File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
catalyst_voices/apps/voices/lib/app/view Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -75,8 +75,12 @@ final class _AppContent extends StatelessWidget {
7575 return AppActiveStateListener (
7676 child: GlobalPrecacheImages (
7777 child: GlobalSessionListener (
78- child: AppMobileAccessRestriction (
79- child: AppSplashScreenManager (
78+ // IMPORTANT: AppSplashScreenManager must be placed above all
79+ // widgets that render visible UI elements. Any widget that
80+ // displays content should be a descendant of
81+ //AppSplashScreenManager to ensure proper splash screen behavior.
82+ child: AppSplashScreenManager (
83+ child: AppMobileAccessRestriction (
8084 child: child ?? const SizedBox .shrink (),
8185 ),
8286 ),
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ class _Background extends StatelessWidget {
100100 painter: BubblePainter (
101101 bubbles: _buildBubbles (),
102102 shapes: _buildShapes (),
103+ backgroundColor: const Color (0xFF9BDDF7 ),
103104 ),
104105 size: Size .infinite,
105106 );
You can’t perform that action at this time.
0 commit comments