country-list-pick
country-list-pick copied to clipboard
Change text color
Can i change the text color of this?
@tharakaWijesundara, you can achieve that like this:
Theme(
data: ThemeData.light().copyWith(
colorScheme: ColorScheme.light(
primary: Colors.white,
)
),
child: CountryListPick(
....
....
)
)