Slide 41
Slide 41 text
override func layoutSpecThatFits(_ constrainedSize: ASSizeRange) -> ASLayoutSpec {
return
ASRatioLayoutSpec(
ratio: 1.6,
child: ASBackgroundLayoutSpec(
child: ASInsetLayoutSpec(
insets: .init(top: 8, left: 8, bottom: 8, right: 8),
child: ASStackLayoutSpec(
direction: .vertical,
spacing: 8,
justifyContent: .end,
alignItems: .start,
children: [
titleNode,
detailNode,
]
)
),
background: imageNode
)
)
}