颤振多行显示与卡中的填充? [关闭]

Posted

技术标签:

【中文标题】颤振多行显示与卡中的填充? [关闭]【英文标题】:Flutter multi row display with padding in card? [closed] 【发布时间】:2021-10-08 09:38:24 【问题描述】:

我想找到在flutter card中绘制多行的最佳方法

【问题讨论】:

您应该将此答案添加为您的帖子的评论或将其添加到您的帖子中 【参考方案1】:

试试下面的代码希望对你有帮助:

Card(
        shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.all(Radius.circular(15.0))),
        elevation: 2,
        margin: EdgeInsets.all(12.0),
        child: Padding(
          padding: const EdgeInsets.all(8.0),
          child: ExpansionTile(
            backgroundColor: Colors.white,
            title: Text('ok'),
            trailing: SizedBox(),
            children: <Widget>[
              Padding(
                padding: const EdgeInsets.all(8.0),
                child: Row(
                  children: <Widget>[
                    Icon(Icons.person),
                    SizedBox(
                      width: 10,
                    ),
                    Text("ABC"),
                   
                  ],
                ),
              ),
              Divider(),
              Padding(
                padding: const EdgeInsets.all(8.0),
                child: Row(
                  children: <Widget>[
                    Icon(Icons.check),
                    SizedBox(width: 10,),
                    Text("Bike"),
                    
                    
                  ],
                ),
              )
            ],
          ),
        ),
      ),

你的屏幕喜欢 ->

【讨论】:

以上是关于颤振多行显示与卡中的填充? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

如何在多行中显示从firebase检索的数据? [关闭]

颤振图标如何填充选项卡中可用的所有宽度和高度

将图像从 firebase 显示到颤振应用程序 [关闭]

关闭运行颤振应用程序的浏览器选项卡时,有没有办法显示警告对话框?

颤振在底部表顶部显示 Snackbar

您是不是必须在所有文本框实际填充之前显示每个选项卡?