Skip to content

Commit 33463db

Browse files
committed
Floating Issue Fixed
1 parent dd5ff26 commit 33463db

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/ui/widgets/common_scaffold.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ class CommonScaffold extends StatelessWidget {
2929
this.floatingIcon,
3030
this.elevation = 4.0});
3131

32-
Widget myBottomBar() => new BottomAppBar(
32+
Widget myBottomBar() => BottomAppBar(
33+
clipBehavior: Clip.antiAlias,
3334
shape: CircularNotchedRectangle(),
3435
child: Ink(
3536
height: 50.0,

lib/ui/widgets/custom_float.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class CustomFloat extends StatelessWidget {
1212
@override
1313
Widget build(BuildContext context) {
1414
return FloatingActionButton(
15+
clipBehavior: Clip.antiAlias,
1516
mini: isMini,
1617
onPressed: qrCallback,
1718
child: Ink(

0 commit comments

Comments
 (0)