FastSettingsThemePage constructor
const
FastSettingsThemePage({
- Key? key,
- EdgeInsets? contentPadding,
- double iconHeight = kFastSettingIconHeight,
- Widget? headerIcon,
- List<
Widget> ? actions, - String lightIconPath = FastImageMobile.light,
- String darkIconPath = FastImageMobile.dark,
- ThemeModeFormatter? themeModeFormatter,
- FastListItemDescriptor? listItemDescriptor,
- String? headerDescriptionText,
- String? titleText,
- String? subtitleText,
Implementation
const FastSettingsThemePage({
super.key,
super.contentPadding,
super.iconHeight,
super.headerIcon,
super.actions,
this.lightIconPath = FastImageMobile.light,
this.darkIconPath = FastImageMobile.dark,
this.themeModeFormatter,
this.listItemDescriptor,
String? headerDescriptionText,
String? titleText,
String? subtitleText,
}) : subtitleText =
subtitleText ?? SettingsLocaleKeys.settings_label_appearance,
super(
headerDescriptionText: headerDescriptionText ??
SettingsLocaleKeys.settings_note_appearance,
titleText: titleText ?? SettingsLocaleKeys.settings_label_appearance,
);