Update close button size (#551)
Godwin Asuquo committed
Oct 21, 2022 at 19:30 UTC
66949fd41aaabf04f0e02b917b9a6010978abca6
1 file changed
+3
-8
lib/src/screens/auth/auth_page.dart
+3
-8
@@ -135,14 +135,9 @@ class AuthPageState extends State<AuthPage> {
135
child: SizedBox(
136
height: 37,
137
width: 37,
138
- child: ButtonTheme(
139
- minWidth: double.minPositive,
140
- child: TextButton(
141
- //highlightColor: Colors.transparent,
142
- //splashColor: Colors.transparent,
143
- //padding: EdgeInsets.all(0),
144
- onPressed: () => Navigator.of(context).pop(),
145
- child: _backArrowImageDarkTheme),
138
+ child: InkWell(
139
+ onTap: () => Navigator.of(context).pop(),
140
+ child: _backArrowImageDarkTheme,
141
),
142
))
143
: Container(),