TF-2940 Add spell check for subject email

This commit is contained in:
dab246
2024-09-18 17:53:21 +07:00
committed by Dat H. Pham
parent b4db2f8521
commit 8173536331
12 changed files with 164 additions and 18 deletions
@@ -11,6 +11,7 @@ class ThemeUtils {
fontFamily: ConstantsUI.fontApp,
appBarTheme: _appBarTheme,
textTheme: _textTheme,
textSelectionTheme: _textSelectionTheme,
dividerTheme: _dividerTheme,
visualDensity: VisualDensity.adaptivePlatformDensity,
scrollbarTheme: ScrollbarThemeData(
@@ -27,6 +28,14 @@ class ThemeUtils {
);
}
static TextSelectionThemeData get _textSelectionTheme {
return const TextSelectionThemeData(
cursorColor: AppColor.primaryColor,
selectionHandleColor: AppColor.primaryColor,
selectionColor: AppColor.primarySelectedColor,
);
}
static AppBarTheme get _appBarTheme {
return const AppBarTheme(
color: Colors.white,