这里是边界颜色和曲线色的全球定义。
...
textSelectionTheme: TextSelectionThemeData(cursorColor: Colors.grey), // <-- change color
inputDecorationTheme: InputDecorationTheme(
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(100)),
borderSide: BorderSide(color: Colors.purple)), // <-- change color
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(100)),
borderSide: BorderSide(color: Colors.purple)), // <-- change color
errorBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(100)),
borderSide: BorderSide(color: Colors.red)), // <-- change color
focusedErrorBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(100)),
borderSide: BorderSide(color: Colors.red)), // <-- change color
filled: true,
fillColor: Colors.white),
...