我正在尝试添加一个标题卡,该标题卡将显示在颤振卡的左上边缘,到目前为止,我还无法实现。 This is an example of what I want
答案 0 :(得分:0)
您需要使用Align Widget包装标头卡。
这是完整的代码:
class Cards extends StatefulWidget {
@override
_CardsState createState() => _CardsState();
}
class _CardsState extends State<Cards> {
@override
Widget build(BuildContext context) {
return Container(
height: 200,
width: 200,
child: Card(
elevation: 20,
child: Align(
alignment: Alignment.topLeft,
child: Container(
width:100,
height: 60,
child: Card(
elevation: 10,
child: Text("header"),
),
),
),
),
);
}
}
容器仅用于高度和宽度控制。