baseTheme property
Retain the original Android theme
Implementation
ThemeData? get baseTheme => _baseTheme;
Implementation
set baseTheme(ThemeData? theme) {
if (_baseTheme == null && theme != null) {
_baseTheme = theme;
}
}
Retain the original Android theme
ThemeData? get baseTheme => _baseTheme;
set baseTheme(ThemeData? theme) {
if (_baseTheme == null && theme != null) {
_baseTheme = theme;
}
}