|
@@ -197,11 +197,15 @@ class _RegistrationFormDialogState extends State<RegistrationFormDialog> {
|
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
|
|
),
|
|
|
),
|
|
|
- IconButton(
|
|
|
- onPressed: () => Get.back(),
|
|
|
- icon: const Icon(
|
|
|
- Icons.close,
|
|
|
- size: 30,
|
|
|
+ InkWell(
|
|
|
+ onTap: () => Get.back(),
|
|
|
+ child: SizedBox(
|
|
|
+ width: 60,
|
|
|
+ height: 60,
|
|
|
+ child: const Icon(
|
|
|
+ Icons.close,
|
|
|
+ size: 30,
|
|
|
+ ),
|
|
|
),
|
|
|
),
|
|
|
],
|