mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
fix the button border Raduis when hovering
This commit is contained in:
@ -57,6 +57,9 @@ class AccurateDialogWidget extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
|
borderRadius: const BorderRadius.only(
|
||||||
|
bottomLeft: Radius.circular(26),
|
||||||
|
),
|
||||||
onTap: leftOnTap,
|
onTap: leftOnTap,
|
||||||
child: Container(
|
child: Container(
|
||||||
height: 40,
|
height: 40,
|
||||||
@ -67,6 +70,9 @@ class AccurateDialogWidget extends StatelessWidget {
|
|||||||
color: ColorsManager.grayBorder,
|
color: ColorsManager.grayBorder,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
borderRadius: BorderRadius.only(
|
||||||
|
bottomLeft: Radius.circular(26),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
child: const Text(
|
child: const Text(
|
||||||
'Cancel',
|
'Cancel',
|
||||||
@ -77,6 +83,9 @@ class AccurateDialogWidget extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
|
borderRadius: const BorderRadius.only(
|
||||||
|
bottomRight: Radius.circular(26),
|
||||||
|
),
|
||||||
onTap: rightOnTap,
|
onTap: rightOnTap,
|
||||||
child: Container(
|
child: Container(
|
||||||
height: 40,
|
height: 40,
|
||||||
@ -87,6 +96,9 @@ class AccurateDialogWidget extends StatelessWidget {
|
|||||||
color: ColorsManager.grayBorder,
|
color: ColorsManager.grayBorder,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
borderRadius: BorderRadius.only(
|
||||||
|
bottomRight: Radius.circular(26),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
child: const Text(
|
child: const Text(
|
||||||
'Next',
|
'Next',
|
||||||
|
Reference in New Issue
Block a user