答案 0 :(得分:3)
使用主题包装文本小部件,并将颜色分配给 ThemeData
中的 textSelectionColor 属性请参考以下代码:-我将文本选择颜色更改为绿色
Theme(
data: ThemeData(textSelectionColor: Colors.green),
child: TextField(
controller: _inputController,
decoration: InputDecoration(hintText: "Input"),
),
),
答案 1 :(得分:2)
Wrap with Theme 并使用 copyWith 保留其他主题数据。
Theme(data: Theme.of(context).copyWith(
textSelectionTheme: TextSelectionThemeData(
selectionColor: Colors.green)),
child: TextFormField()
)
答案 2 :(得分:0)
更改textSelectionColor
中ThemeData
的值,它将为您提供所需的结果。