Skip to content

Latest commit

 

History

History
executable file
·
26 lines (23 loc) · 833 Bytes

layout2-layoutspec-types-examples.md

File metadata and controls

executable file
·
26 lines (23 loc) · 833 Bytes
title layout permalink
Layout Spec Composition Examples
docs
/docs/layout2-layoutspec-types-examples.html

Text Overlaid on an Image

SwiftObjective-C
- (ASLayoutSpec *)layoutSpecThatFits:(ASSizeRange)constrainedSize
{
  ...
  UIEdgeInsets *insets = UIEdgeInsetsMake(0, HORIZONTAL_BUFFER, 0, HORIZONTAL_BUFFER);
  ASInsetLayoutSpec *headerWithInset = [ASInsetLayoutSpec alloc] initWithInsets:insets child:textNode];
  ...
}