作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的脚手架有深色背景颜色。
我正在使用 showCupertinoModalPopup
、CupertinoActionSheet
并使用 CupertinoActionSheetAction
作为子项。
在模拟器中,操作表如下所示:
.
当我在实际的 iPhone 上运行该应用程序时,它看起来像这样:
SIM 中的操作表项目看起来正确。外观非常白。
但在设备上,在设备上更加透明,因此更难看到。
CupertinoActionSheet
和 CupertinoActionSheetAction
都没有颜色或透明度级别属性
对这里发生的事情有什么想法吗?
<小时/>flutter 医生:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v0.11.7, on Mac OS X 10.13.6 17G65, locale en-US)
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 10.1)
[✓] Android Studio (version 3.2)
[✓] VS Code (version 1.29.0)
[✓] Connected device (3 available)
最佳答案
return showCupertinoModalPopup(
context: context,
builder: (BuildContext context) => CupertinoActionSheet(
actions: <Widget>[
Container(
color: Colors.white,
child: CupertinoActionSheetAction(
onPressed: () {},
child: const Text(
'Made this my title',
),
),
),
Container(
color: Colors.white,
child: CupertinoActionSheetAction(
child: const Text(
'next button',
),
onPressed: () {},
),
),
Container(
color: Colors.white,
child: CupertinoActionSheetAction(
child: const Text(
'next action',
),
onPressed: () {},
),
),
],
cancelButton: CupertinoActionSheetAction(
child: const Text(
'Cancel',
),
isDefaultAction: true,
onPressed: () {
Navigator.pop(context);
},
),
),
);
关于Flutter - CupertinoActionSheet/CupertinoActionSheetAction 背景颜色在设备上与模拟器中不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53452900/
我的脚手架有深色背景颜色。 我正在使用 showCupertinoModalPopup、CupertinoActionSheet 并使用 CupertinoActionSheetAction 作为子项
我是一名优秀的程序员,十分优秀!