Welcome to Flexbox Froggy, a game where you help Froggy and friends by writing AsyncDisplayKit layout code! Guide this frog to the lilypad on the right by using the justifyContent
property, which aligns items horizontally and accepts the following values:
ASStackLayoutJustifyContentStart
: Items align to the left side of the stack.ASStackLayoutJustifyContentEnd
: Items align to the right side of the stack.ASStackLayoutJustifyContentCenter
: Items align at the center of the stack.ASStackLayoutJustifyContentSpaceBetween
: Items display with equal spacing between them.ASStackLayoutJustifyContentSpaceAround
: Items display with equal spacing around them.For example, stack.justifyContent = ASStackLayoutJustifyContentEnd;
will move the frog to the right.
ASStackLayoutSpec *stack = [[ASStackLayoutSpec alloc] init]; stack.direction = ASStackLayoutDirectionHorizontal;
stack.children = @[greenFrog];
Flexbox Froggy is created by Thomas Park • GitHub • Twitter
Forked and modified by Huy Nguyen • GitHub • Twitter
English •