Daniel-Ioannou / flutter_country_picker

A flutter package to select a country from a list of countries.
https://pub.dev/packages/country_picker
MIT License
126 stars 174 forks source link

is it possible for cursor color change? #122

Closed rakibflyfartech closed 1 year ago

Daniel-Ioannou commented 1 year ago

@rakibflyfartech Is to change cursor color using the application theme.

In the example below I set the color to green

MaterialApp(
   title: 'Demo for country picker package',
   theme: ThemeData(
      primarySwatch: Colors.blue,
      visualDensity: VisualDensity.adaptivePlatformDensity,
      textSelectionTheme: TextSelectionThemeData(
         cursorColor: Colors.green
      ),
),