如何将页眉卡添加到颤振卡

时间:2020-10-11 00:46:56

标签: flutter material-design flutter-layout

我正在尝试添加一个标题卡,该标题卡将显示在颤振卡的左上边缘,到目前为止,我还无法实现。 This is an example of what I want

1 个答案:

答案 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"),
            ),
          ),
        ),
      ),
    );
  }
}

容器仅用于高度和宽度控制。

这是屏幕截图: enter image description here