本文主要是介绍Flutter 基础控件 CardView,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Flutter 基础控件 CardView
/// 卡片布局
class CardViewDemo extends StatelessWidget {@overrideWidget build(BuildContext context) {return Center(child: Container(height: 600,child: Card(color: Colors.red,child: Column(children: <Widget>[ListTile(leading: Icon(Icons.launch),title: Text("我是第一行标题", style: TextStyle(color: Colors.yellow),),subtitle: Text("我是第一行副标题", style: TextStyle(color: Colors.blue),),),Divider(),ListTile(leading: Icon(Icons.title),title: Text("我是第二行标题", style: TextStyle(color: Colors.yellow),),subtitle: Text("我是第二行副标题", style: TextStyle(color: Colors.blue),),),Divider(),ListTile(leading: Icon(Icons.search),title: Text("我是第三行标题", style: TextStyle(color: Colors.yellow),),subtitle: Text("我是第三行副标题", style: TextStyle(color: Colors.blue),),),Divider(),],),),),);}
}
效果
这篇关于Flutter 基础控件 CardView的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!