v1.0.16, fix wps link

This commit is contained in:
Caten
2024-07-31 00:09:05 +08:00
parent 0377aa7b8f
commit d54d1ef6f3
4 changed files with 55 additions and 55 deletions

View File

@@ -1357,7 +1357,7 @@ class _MyHomePageState extends State<MyHomePage> {
title: Text(isLoadingComplete?Util.getCurrentProp("name"):widget.title),
),
body: isLoadingComplete?
Expanded(child: ValueListenableBuilder(valueListenable: G.pageIndex, builder: (context, value, child) {
ValueListenableBuilder(valueListenable: G.pageIndex, builder: (context, value, child) {
return IndexedStack(index: G.pageIndex.value, children: const [TerminalPage(), Padding(
padding: EdgeInsets.all(8),
child: Scrollbar(child: SingleChildScrollView(restorationId: "control-scroll", child: Column(
@@ -1382,7 +1382,7 @@ class _MyHomePageState extends State<MyHomePage> {
]
)))
)]);
})):const LoadingPage(),
}):const LoadingPage(),
bottomNavigationBar: ValueListenableBuilder(valueListenable: G.pageIndex, builder:(context, value, child) {
return Visibility(visible: isLoadingComplete,
// child: BottomNavigationBar(currentIndex: G.pageIndex.value,