Skip to content

Commit

Permalink
fix: Enabled Circular border around country Selector (#1464)
Browse files Browse the repository at this point in the history
* Enabled border

* Added comma

* added FocusedColor

* Switched to const's
  • Loading branch information
abhay1821 authored Apr 5, 2022
1 parent 6e6f3b8 commit 6520be7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/smooth_app/lib/pages/onboarding/welcome_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,14 @@ class WelcomePage extends StatelessWidget {
bottom: LARGE_SPACE,
),
inputDecoration: InputDecoration(
enabledBorder: const OutlineInputBorder(
focusedBorder: OutlineInputBorder(
borderRadius: ROUNDED_BORDER_RADIUS,
borderSide: BorderSide(
color: Theme.of(context).primaryColorDark,
width: 2.0,
),
),
border: const OutlineInputBorder(
borderSide: BorderSide(
color: Color.fromARGB(255, 235, 235, 235),
),
Expand Down

0 comments on commit 6520be7

Please sign in to comment.