gpt4 book ai didi

flutter - 我怎样才能改变 CupertinoDatePicker 的背景颜色

转载 作者:IT王子 更新时间:2023-10-29 06:53:32 26 4
gpt4 key购买 nike

我在我的应用程序中使用 CupertinoDatePicker。

Container(
height: 200,
padding: const EdgeInsets.all(16.0),
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.date,
minimumYear: DateTime.now().year,
onDateTimeChanged: (DateTime value) {
print(value);
},
)

应用程序正在使用 MaterialApp (MaterialTheme)。有没有办法改变 CupertinoDatePicker 的背景颜色?

这是我尝试过的方法(将 CupertinoDatePicker 包裹在 CupertinoTheme 周围并将颜色设置为黑色)但它不起作用。

Container(
height: 200,
padding: const EdgeInsets.all(16.0),
child: CupertinoTheme(
data: CupertinoThemeData(
primaryColor: Colors.black),
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.date,
minimumYear: DateTime.now().year,
onDateTimeChanged: (DateTime value) {
print(value);
},
),
),
)

最佳答案

在撰写本文时,这是不可能的,并且在 date_picker.dart 的源代码中有一条注释,内容如下:

// Considers setting the default background color from the theme, in the future. const Color _kBackgroundColor = CupertinoColors.white;

关于flutter - 我怎样才能改变 CupertinoDatePicker 的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55474872/

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