您有没有经历过?将其注册为bug有意义吗?
对于我的一个屏幕,我现在第二次遇到这种情况:我插入一个CupertinoButton,并将Text作为孩子,但是,该文本没有显示。在第一次出现时,似乎呈现了2个像素的文本(我看到了2个点)。我还从另一行复制了CupertinoButton,并保持不变。没有更改,文本不会出现。如果我然后仅将小部件名称从CupertinoButton更改为FlatButton(不影响其他所有内容),则会显示文本。
由于CupertinoButtons通常为我工作,所以我想我必须将整个项目提交给bug报告,因为隔离该问题并不像直接工作一样。
答案 0 :(得分:1)
请考虑这样添加padding
:
CupertinoButton(
padding: EdgeInsets.symmetric(vertical: 0, horizontal: 5),
color: Colors.blue,
borderRadius: BorderRadius.all(Radius.circular(12)),
child: Text(
'Login',
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
color: Colors.white),
),
onPressed: () => {},
),