首先,一刀切,一味混淆如何改变“组合”背景颜色,以冲淡。
i 设法将我的清单Tile和我所谓的“提炼者”改为有色人意,但其余部分(列在清单中)都是白人。 下面的一条线是,不要真的想要,而是可以去掉。
这里是法典
import package:flutter/material.dart ;
import ../style/theme.dart as style;
class MyDrawer extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
// width: MediaQuery.of(context).,
child: Drawer(
elevation: 0,
child: ListView(
children: <Widget>[
Container(
height: 170,
width: 170,
padding: EdgeInsets.only(top:30),
color: style.Colors.secondColor,
child: Column(children: <Widget>[
Material(
borderRadius: BorderRadius.all(Radius.circular(100)),
child: Padding(padding: EdgeInsets.all(20.0),
child: Image.asset( images/circle.png ,width: 80, height: 80,),),
//TODO ganti logo
),
],),
),
Container(
color: style.Colors.secondColor,
child: Column(
children: <Widget>[
ListTile(
leading: Icon(Icons.help_outline_sharp),
title: Text( Help , style: TextStyle(fontSize: 18,),),
onTap: () {},
),
ListTile(
leading: Icon(Icons.person),
title: Text( About us , style: TextStyle(fontSize: 18,),),
onTap: () {},
),
],
),
),
],
),
),
);
}
}
这里是目前局势的照片。
https://i.stack.imgur.com/LXVw3.png”rel=“nofollow noreferer”> 页: 1
Another Question what if i want to put a single ListTile on the bottom? (like log out)