hifiaz / country-list-pick

Flutter package to show and pick country code
https://pub.dev/packages/country_list_pick
MIT License
76 stars 99 forks source link

Change text color #30

Open tharakaWijesundara opened 3 years ago

tharakaWijesundara commented 3 years ago

Can i change the text color of this?

mnomanmemon commented 3 years ago

@tharakaWijesundara, you can achieve that like this:

Theme(
    data: ThemeData.light().copyWith(
      colorScheme: ColorScheme.light(
        primary: Colors.white,
      )
    ),
    child: CountryListPick(
        ....
        ....
    )
)