使用主题copyWith方法更改'textSelectionHandleColor'的颜色

时间:2019-11-07 14:59:18

标签: flutter

我正在尝试使用主题copyWith方法在不同页面上更改'textSelectionHandleColor'的颜色。但这并没有改变。

我在做什么错了?

//main.dart
@override
    Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Title',
        theme: ThemeData(
          textSelectionHandleColor: Colors.grey

//xpage.dart    
@override
    Widget build(BuildContext context) {
      return Theme(
        data: Theme.of(context).copyWith(textSelectionHandleColor: Colors.red),

0 个答案:

没有答案