Updated dependencies

This commit is contained in:
2026-03-07 16:47:48 +01:00
parent 2bd5c30094
commit 664af7ffee
7 changed files with 30 additions and 11 deletions

View File

@@ -47,10 +47,7 @@ class _AppSkeletonState extends State<AppSkeleton> {
: (Widget? currentChild, List<Widget> previousChildren) {
return Stack(
alignment: Alignment.topCenter,
children: [
...previousChildren,
if (currentChild != null) currentChild,
],
children: [...previousChildren, ?currentChild],
);
},
),