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
+1
A temporary work around is to set your bodyLarge textstyle to be your desired style. Theme( data: Theme.of(context).copyWith( textTheme: Theme.of(context).textTheme.copyWith( bodyLarge: Theme.of(context) .textTheme .bodyLarge ?.copyWith( color: Colors.black, ) ?? const TextStyle(color: Colors.black), ), ), child: IntlPhoneField(...) ),
In Country code PickerDialog's search TextField, there is no option available to change default text style.
I have resolved this problem by adding below lines in PickerDialogStyle class.
add below line in variable declaration
final TextStyle? searchFieldTextStyle;
add below line in constructor parameter
this.searchFieldTextStyle,
add below line in Textfield
style: widget.style?.searchFieldTextStyle ?? TextStyle(),
The text was updated successfully, but these errors were encountered: