Document default values of alignItems and justifyContent (#2733)

This commit is contained in:
Huy Nguyen
2016-12-08 15:53:05 +00:00
committed by Michael Schneider
parent 4355f4d2ee
commit 016d99f420
2 changed files with 5 additions and 4 deletions

View File

@@ -46,13 +46,14 @@ NS_ASSUME_NONNULL_BEGIN
/**
* @abstract Specifies the initial size in the stack dimension for this object.
* Default to ASDimensionAuto
* Defaults to ASDimensionAuto.
* Used when attached to a stack layout.
*/
@property (nonatomic, readwrite) ASDimension flexBasis;
/**
* @abstract Orientation of the object along cross axis, overriding alignItems
* @abstract Orientation of the object along cross axis, overriding alignItems.
* Defaults to ASStackLayoutAlignSelfAuto.
* Used when attached to a stack layout.
*/
@property (nonatomic, readwrite) ASStackLayoutAlignSelf alignSelf;