文本选择颜色:
theme: ThemeData.light().copyWith(
accentColor: kPrimaryAccent,
primaryColor: kPrimaryColor,
textSelectionColor: kTextSelectionColor,
textSelectionHandleColor: kPrimaryAccent)
但是如何在单个文本字段中本地完成此操作?
答案 0 :(得分:1)
您可以用Theme
包装小部件,并为其textSelectionColor
设置ThemeData
:
Container(
child: Theme(
data: ThemeData(
textSelectionColor: Colors.yellow,
),
child: SelectableText(
'this is a text',
),
),
),
答案 1 :(得分:0)
您有多种选择,这是一些示例:
TextStyle
Text(
"Test Text",
style: TextStyle(
color: Color(// Hex color)
),
)
主题
Theme(
data: Theme.of(context).copyWith(// new ThemeData here),
child: Text("Test Text"),
)