You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The country theme misses property to the search country text field style.
If by default I have a app them with bodyLarge style then even warping it around with a Theme widget is not possible to override the style of the search text field.
Currently:
class CountryTheme {
final String? searchText;
final String? searchHintText;
final String? lastPickText;
final Color? alphabetSelectedBackgroundColor;
final Color? alphabetTextColor;
final Color? alphabetSelectedTextColor;
final bool? isShowTitle;
final bool? isShowFlag;
final bool? isShowCode;
final bool? isDownIcon;
final String? initialSelection;
final bool? showEnglishName;
final Color? labelColor;
CountryTheme({
this.labelColor,
this.searchText,
this.searchHintText,
this.lastPickText,
this.alphabetSelectedBackgroundColor,
this.alphabetTextColor,
this.alphabetSelectedTextColor,
this.isShowTitle,
this.isShowFlag,
this.isShowCode,
this.isDownIcon,
this.initialSelection,
this.showEnglishName,
});
}
I would suggest to add a property: searchTextColor or searchTextStyle
The text was updated successfully, but these errors were encountered:
The country theme misses property to the search country text field style.
If by default I have a app them with bodyLarge style then even warping it around with a Theme widget is not possible to override the style of the search text field.
Currently:
I would suggest to add a property: searchTextColor or searchTextStyle
The text was updated successfully, but these errors were encountered: