如何在颤动中绘制带有图像和文本的卡片列表

Posted

技术标签:

【中文标题】如何在颤动中绘制带有图像和文本的卡片列表【英文标题】:How to plot a list of cards with images and text in flutter 【发布时间】:2021-04-18 15:45:09 【问题描述】:

如何根据卡片索引打印带有图像和文本段落的卡片列表?这意味着假设我有一个通知页面,我必须以卡片列表格式显示即将到来的通知。如果我有生日通知,那么我必须向用户显示生日照片以及生日文本。 如果我有提醒,那么我必须在卡片中显示带有日历照片的提醒文本,就像这样

【问题讨论】:

这篇文章可能对你有所帮助medium.com/@DakshHub/… 【参考方案1】:

这是一个你想要的列表类,只需根据你的逻辑更改图标

class NotificationListTile extends StatelessWidget 
  
  @override
  Widget build(BuildContext context) 
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          iconTheme: IconThemeData(color: kTextColor),
          title: Text(
            'Notifications',
            style:
            TextStyle(fontFamily: 'Poppins-regular', color: kTextColor),
          ),
          backgroundColor: kPrimaryLightColor,
        ),
        body: ListView(
          children: <Widget>[
            ListTile(
              title: Text("this is title"),
              subtitle: Text("this is subtitle"),
              leading: CircleAvatar(child: Icon(Icons.account_box)),
            ),
            ListTile(
              title: Text("this is title"),
              subtitle: Text("this is subtitle"),
              leading: CircleAvatar(child: Icon(Icons.account_box)),
            ),
            ListTile(
              title: Text("this is title"),
              subtitle: Text("this is subtitle"),
              leading: CircleAvatar(child: Icon(Icons.account_box)),
            )
          ],
        ),
      ),
    );
  

【讨论】:

以上是关于如何在颤动中绘制带有图像和文本的卡片列表的主要内容,如果未能解决你的问题,请参考以下文章

如何在颤动中将列表数据从一个屏幕传递到另一个屏幕(StatefulWidget)

如何在颤动的列表视图中设置卡片的宽度?

如何在 Flutter 中制作带有标题的多张卡片列表

如何在颤动中显示带有提交按钮和隐藏输入字段的html表单

如何在颤动中显示具有顶部和底部渐变阴影的图像?

如何在堆栈中将文本放置在图像上?