TextEditorTheme constructor

const TextEditorTheme({
  1. TextStyle? fontSizeBottomSheetTitle,
  2. EdgeInsets textFieldMargin = const EdgeInsets.only(bottom: kBottomNavigationBarHeight),
  3. Color appBarBackgroundColor = imageEditorAppBarColor,
  4. Color appBarForegroundColor = const Color(0xFFE1E1E1),
  5. Color background = const Color(0x9B000000),
  6. Color bottomBarBackgroundColor = const Color(0xFF000000),
  7. MainAxisAlignment bottomBarMainAxisAlignment = MainAxisAlignment.spaceEvenly,
  8. Color inputHintColor = const Color(0xFFBDBDBD),
  9. Color inputCursorColor = imageEditorPrimaryColor,
})

Creates an instance of the TextEditorTheme class with the specified theme properties.

Implementation

const TextEditorTheme({
  this.fontSizeBottomSheetTitle,
  this.textFieldMargin =
      const EdgeInsets.only(bottom: kBottomNavigationBarHeight),
  this.appBarBackgroundColor = imageEditorAppBarColor,
  this.appBarForegroundColor = const Color(0xFFE1E1E1),
  this.background = const Color(0x9B000000),
  this.bottomBarBackgroundColor = const Color(0xFF000000),
  this.bottomBarMainAxisAlignment = MainAxisAlignment.spaceEvenly,
  this.inputHintColor = const Color(0xFFBDBDBD),
  this.inputCursorColor = imageEditorPrimaryColor,
});