gpt4 book ai didi

flutter - 如何在 flutter 中更改日期选择器颜色?

转载 作者:行者123 更新时间:2023-12-05 05:30:56 33 4
gpt4 key购买 nike

builder: (context, child) {
return Theme(
data: Theme.of(context).copyWith(
colorScheme: const ColorScheme.light(
primary: Colors.white,
onPrimary: Colors.black,
),
textButtonTheme: TextButtonThemeData(
style: TextButton.styleFrom(
foregroundColor: Colors.black,
),
),
),
child: child!,
);
},

enter image description here

这是我的代码。我想让标题变白。但是当标题为白色时该按钮不可见。我该怎么办?

最佳答案

today color is colorScheme.primary这是白色的,我们看不到。

    final Color todayColor = colorScheme.primary;

.....

} else if (isToday) {
// The current day gets a different text color and a circle stroke
// border.
dayColor = todayColor;
decoration = BoxDecoration(
border: Border.all(color: todayColor),
shape: BoxShape.circle,
);
}

您可以查看 calendar_date_picker.dart

目前,我可以考虑创建一个本地文件并自定义颜色,或者更改选择器颜色。

关于flutter - 如何在 flutter 中更改日期选择器颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74508303/

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