希望每個人都做得很好。我是 flutter 的新手,我想知道如何給出這樣的影像形狀,我附上了樣本......影像來自資料庫

uj5u.com熱心網友回復:
您可以使用 Stack 小部件,
Stack(
clipBehavior: Clip.hardEdge,
children: [
Positioned(
top: -30, //negative value will shift to up side
right: -30, // this will shift pixel to the right
child: Container(
width: 100, //,
height: 100,
child: Image.network(
" ",
fit: BoxFit.cover,
)),
)
],
),
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/535602.html
