【发布时间】:2021-04-21 11:34:46
【问题描述】:
我尝试在UserAccountDrawerHeader() 上创建个人资料。我将属性currentAccountPicture: 和CircleAvatar() 用于图像用户。但头像不圆。
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Hello World'),
),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: [
DrawerHeader(
child: UserAccountsDrawerHeader(
accountName: Text('Jo'),
accountEmail: Text('hello@world.com'),
currentAccountPicture: CircleAvatar(
backgroundColor: Colors.pink,
child: Text('JA'),
),
),
decoration: BoxDecoration(color: Colors.blue),
),
],
),
),
);
}
}
我的代码有什么问题?
【问题讨论】:
标签: flutter