fix(android): enable safe area for scaffold dialogs to fix system bar overlap

This commit is contained in:
Bronson 2025-12-18 19:13:37 +10:30
parent adba41981d
commit 935a6bb5a2

View file

@ -12,7 +12,7 @@ Future<T?> showScaffoldDialog<T>({
required Widget Function(BuildContext context) builder,
}) => showDialog<T>(
context: context,
useSafeArea: false,
useSafeArea: true,
builder: FluffyThemes.isColumnMode(context)
? (context) => Center(
child: Container(