gpt4 book ai didi

flutter : Border color on Alertdialog and font

转载 作者:行者123 更新时间:2023-12-02 16:36:45 26 4
gpt4 key购买 nike

我是 Flutter 的新手,我正在尝试为 AlertDialog 添加边框颜色。我找不到办法,所以我尝试用容器替换它,但字体不一样,我找不到正确的字体。这是我要复制的 AlertDialog。字体与 FlatButton 标签使用的字体相同,但我仍然找不到它。

AlertDialog(
backgroundColor: Theme.of(context).primaryColor,
contentPadding: EdgeInsets.all(0),
title:Center(child:Text(contact.name + " "+ contact.familyName)),
content:Column(
children: <Widget>[
Text(_role,style: _style),
Divider(
color: Colors.blueGrey,
),
FlatButton.icon(
label: Text(
"Voir le profil",
),
icon:Icon(
Icons.account_circle,
color: Colors.black,
),
onPressed:(){
Navigator.push(
context,
MaterialPageRoute(builder: (context) => UserProfileScreen(userId:contact.id)),
);
},
),
FlatButton.icon(
label: Text(
"Ajouter en ami",
style:TextStyle(color:Colors.green),
),
icon:Icon(
Icons.add,
color: Colors.green,
),

onPressed:()=>Navigator.pop(context,RoleActions.AJOUT_AMI),
),
_buildPermissions(),
],
),
),

Correct alert dialog Alert dialog replica when using dialog

最佳答案

如果您只是在寻找边框,您可以使用 shape 进行设置:

return AlertDialog(
backgroundColor: Colors.black,
shape: RoundedRectangleBorder(
side: BorderSide(color: Colors.red)),
);

关于 flutter : Border color on Alertdialog and font,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62559162/

26 4 0