fix(mobile): navigation panel overlaps with right rotate (#12950)

fix: navigation panel overlaps with right rotate
This commit is contained in:
Lauritz Tieste 2024-09-27 03:40:07 +02:00 committed by GitHub
parent a6e703ed6b
commit 42ad3e6bb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,8 @@ class CropImagePage extends HookWidget {
],
),
backgroundColor: context.scaffoldBackgroundColor,
body: LayoutBuilder(
body: SafeArea(
child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) {
return Column(
children: [
@ -153,6 +154,7 @@ class CropImagePage extends HookWidget {
);
},
),
),
);
}
}