Set underline for focused text fields

This commit is contained in:
Vishnu Mohandas 2021-05-31 05:25:50 +05:30
parent af9fc70cbd
commit 8fcca7c168

View file

@ -55,6 +55,13 @@ final themeData = ThemeData(
textSelectionTheme: TextSelectionThemeData().copyWith(
cursorColor: Colors.white.withOpacity(0.5),
),
inputDecorationTheme: InputDecorationTheme().copyWith(
focusedBorder: UnderlineInputBorder(
borderSide: BorderSide(
color: Color.fromRGBO(45, 194, 98, 1.0),
),
),
),
);
void main() async {