diff --git a/.github/workflows/versions.env b/.github/workflows/versions.env index 6d23c9b5..ed14bbc6 100644 --- a/.github/workflows/versions.env +++ b/.github/workflows/versions.env @@ -1,2 +1,2 @@ -FLUTTER_VERSION=3.16.8 +FLUTTER_VERSION=3.16.7 JAVA_VERSION=17 \ No newline at end of file diff --git a/lib/widgets/app_lock.dart b/lib/widgets/app_lock.dart index 3ec30aa8..d337358d 100644 --- a/lib/widgets/app_lock.dart +++ b/lib/widgets/app_lock.dart @@ -103,6 +103,12 @@ class AppLock extends State with WidgetsBindingObserver { @override Widget build(BuildContext context) => Provider( create: (_) => this, - child: isLocked ? const LockScreen() : widget.child, + child: Stack( + fit: StackFit.expand, + children: [ + widget.child, + if (isLocked) const LockScreen(), + ], + ), ); }