new: tap server tab disk io view to switch

This commit is contained in:
lollipopkit
2023-11-01 00:59:54 -06:00
parent 37e5c4d092
commit a5341b00c1
15 changed files with 109 additions and 38 deletions

View File

@@ -295,10 +295,10 @@ class _FullScreenPageState extends State<FullScreenPage> with AfterLayoutMixin {
return ValueListenableBuilder<NetViewType>(
valueListenable: Stores.setting.netViewType.listenable(),
builder: (_, val, __) {
final data = val.build(ss);
final (a, b) = val.build(ss);
return AnimatedSwitcher(
duration: const Duration(milliseconds: 177),
child: _buildIOData(data.up, data.down),
child: _buildIOData(a, b),
);
},
);