gpt4 book ai didi

flutter - 在 flutter 中,如何添加一个看起来像带下划线的文本字段的轮廓按钮?

转载 作者:行者123 更新时间:2023-12-03 03:23:37 30 4
gpt4 key购买 nike

在flutter中,如何添加一个看起来像带下划线的文本字段的轮廓按钮?我只需要底部下划线。

           OutlineButton(
color: Theme.of(context).buttonColor,
textColor: Theme.of(context).textTheme.bodyText1.color,
// disabledColor: Colors.grey,
disabledTextColor: Colors.black,
borderSide: (),
onPressed: () {

},
child: Center(
child: Text(
"No Reminder",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18.0),
),
),
)

最佳答案

GestureDetector(
onTap: () => print('tapped'),
child: Container(
// optional
padding: const EdgeInsets.only(bottom: 1.0),
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
width: 2.0, color: Colors.lightBlue.shade900))),
child: Text('button')),
)

我不知道结果会如何,但我希望它能帮助您实现您的需求

关于flutter - 在 flutter 中,如何添加一个看起来像带下划线的文本字段的轮廓按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60255530/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com