これは、 PageComponentの例 (インポートされた Sketch ドキュメントを除く) から (ほぼ) 逐語的に取られていますが、私のコードでは、権利contentInset
は完全に無視され、カードは最初のカードの後に各カードで奇妙にオフセットされます。
# Set-up PageComponent
page = new PageComponent
width: Screen.width
height: Screen.height
y: 0
scrollVertical: false
contentInset: {top: 32, left: 32, right: 32}
backgroundColor: "pink"
# Variable that adjusts the amount of cards
amount = 4
print page.width
print screen.width
# Create and style the cards within a loop
for i in [0...amount]
card = new Layer
backgroundColor: "#fff"
borderRadius: 8
width: page.width - 64
height: 1040
x: page.width * i
superLayer: page.content
card.style.boxShadow = "0 1px 6px rgba(0,0,0,0.2)"
Framer Studio ver 1.13.25 (1583) を使用しています。