mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
Fixed AffectsLayout
This commit is contained in:
@ -801,9 +801,7 @@ export var minWidthProperty = new styleProperty.Property("minWidth", "min-width"
|
|||||||
new observable.PropertyMetadata(0, AffectsLayout, null, isMinWidthHeightValid), converters.numberConverter);
|
new observable.PropertyMetadata(0, AffectsLayout, null, isMinWidthHeightValid), converters.numberConverter);
|
||||||
|
|
||||||
export var minHeightProperty = new styleProperty.Property("minHeight", "min-height",
|
export var minHeightProperty = new styleProperty.Property("minHeight", "min-height",
|
||||||
new observable.PropertyMetadata(
|
new observable.PropertyMetadata(0, AffectsLayout, null, isMinWidthHeightValid), converters.numberConverter);
|
||||||
0, observable.PropertyMetadataSettings.AffectsLayout, null, isMinWidthHeightValid),
|
|
||||||
converters.numberConverter);
|
|
||||||
|
|
||||||
// Helper property holding most layout related properties available in CSS.
|
// Helper property holding most layout related properties available in CSS.
|
||||||
// When layout related properties are set in CSS we chache them and send them to the native view in a single call.
|
// When layout related properties are set in CSS we chache them and send them to the native view in a single call.
|
||||||
|
Reference in New Issue
Block a user