alphabetsBarTheme property
Alphabets bar Theme.
Example:
dialogTheme: const CountryListDialogTheme(
alphabetsBar: AlphabetsBarThemes(
backgroundColor: Colors.transparent,
textStyle: TextStyle(color: Colors.black),
selectedBackgroundColor: Colors.redAccent,
selectedTextStyle: TextStyle(color: Colors.white),
),
)
or to hide Alphabets bar
dialogTheme: const CountryListDialogTheme(
alphabetsBar: AlphabetsBarThemes(visible: false),)
Implementation
final AlphabetsBarThemeData alphabetsBarTheme;