🐛 Fix orientation inconsistences

This commit is contained in:
LittleSheep 2025-03-05 00:00:05 +08:00
parent 6235e736b9
commit 6042e57e7a

View File

@ -495,6 +495,11 @@ class _AppSplashScreenState extends State<_AppSplashScreen> with TrayListener {
WidgetsBinding.instance.addPostFrameCallback((_) {
cfg.calcDrawerSize(context);
});
Future.delayed(const Duration(milliseconds: 300), () {
if (context.mounted) {
cfg.calcDrawerSize(context);
}
});
return SizeChangedLayoutNotifier(
child: widget.child,
);