opt.: server tab if landscape & ignore stderr

This commit is contained in:
lollipopkit
2024-05-09 13:39:11 +08:00
parent faacbe088b
commit 8ed6a3869e
7 changed files with 87 additions and 71 deletions

View File

@@ -78,7 +78,7 @@ class MyApp extends StatelessWidget {
home: Stores.setting.fullScreen.fetch()
? OrientationBuilder(
builder: (_, ori) {
return HomePage(landscape: ori == Orientation.landscape);
return HomePage(fullScreen: ori == Orientation.landscape);
},
)
: const HomePage(),