5

我是新来的颤振,我需要帮助。

我正在创建一个应用程序,用户可以在其中通过CupertinoPicker选择数据。

选择器工作正常,但我想改变它的风格。

目前的风格是这样,但我希望它是那样

不幸的是我不明白该怎么做,我读了这个但我做不到,我想更改所选元素的颜色和大小,未选择元素的颜色和线条的颜色。

但我不知道我该怎么做。

任何人都可以帮我理解吗?

代码是这样的

Container(

          ˙child: _showCupertinoPicker(
           context,
           book[currentPage].orari.map((orario) {
           return Center(
                     child: Text(orario,
                     style: TextStyle(color: CupertinoColors.activeBlue

                         )));
           }).toList())),
.
.
.
.

_showCupertinoPicker(BuildContext context, List<Widget> orariWidget) {
  return CupertinoPicker(
    backgroundColor: Colors.white,
    onSelectedItemChanged: (value) {},
    itemExtent: 40.0,
    children: orariWidget,
  );
}
4

3 回答 3

11

可以像这样设计CupertinoPickerCupertinoDatePicker使用主题:

return MaterialApp(
  theme: ThemeData(
    cupertinoOverrideTheme: CupertinoThemeData(
      textTheme: CupertinoTextThemeData(
        dateTimePickerTextStyle: TextStyle(color: Colors.blue, fontSize: 16),
        pickerTextStyle: TextStyle(color: Colors.blue, fontSize: 12),
      )
    )
  )
)
于 2019-12-18T22:35:01.797 回答
6

用另一个名为 CupertinoTheme() 的小部件将 CupertinoPicker() 包装为

CupertinoTheme(
     data: CupertinoThemeData(
         textTheme: CupertinoTextThemeData(
             pickerTextStyle: TextStyle(//Your normal TextStyling)
         ),
     ),
     child:CupertinoPicker(//Your Cupertino Picker)
)
于 2020-05-12T17:12:09.763 回答
1

我知道这个解决方案很冗长,但它有效:

final cupertinoTheme = CupertinoTheme.of(context);
// Do your customising here:
final pickerTextStyle =
    cupertinoTheme.textTheme.pickerTextStyle.copyWith(fontSize: 18.0, color: Colors.cyan);
final textTheme =
    cupertinoTheme.textTheme.copyWith(pickerTextStyle: pickerTextStyle);
return CupertinoTheme(
  data: cupertinoTheme.copyWith(textTheme: textTheme),
  child: yourPickerGoesHere,
);

CupertinoPicker从 . 获取文本样式CupertinoTheme.of(context).textTheme.pickerTextStyle。我们在这里所做的就是更新pickerTextStyle我们的设置。

于 2019-09-16T13:22:15.013 回答