我试图使玩家手中的牌数量取决于一个变量。我无法弄清楚如何在 GridView.builder 之外执行此操作。
我当前的代码:
return Stack(
children: [
Positioned(
bottom: verticalPosition(1),
left: horizontalPosition(1),
child: Transform.rotate(
angle: rotation(1),
child: PlayCardDragBox(
cardValue: 30,
index: 1,
),
),
),
Positioned(
bottom: verticalPosition(2),
left: horizontalPosition(2),
child: Transform.rotate(
angle: rotation(2),
child: PlayCardDragBox(
cardValue: 22,
index: 2,
),
),
),
... 等等