How to change background color of CountryListPick? flutter package

103 Views Asked by At

The default background is white. In my app I am applying dark theme so I need to change the background color to black and the name of countries in white.enter image description here


CountryListPick(
theme: CountryTheme(
isShowFlag: true,
isShowTitle: false,
isShowCode: false,
isDownIcon: true,
showEnglishName: true,
),
initialSelection: Globals.initialPhoneCode,
onChanged: (code) =>
phoneNumberController.text = code!.dialCode!,
useUiOverlay: true,
useSafeArea: false
),
0

There are 0 best solutions below