refactor(server): extract shared runtime and implement service install/run in arbiter-server.exe #44

Closed
CleverWild wants to merge 19 commits from win-service into main
Showing only changes of commit ac5fedddd1 - Show all commits

View File

@@ -22,6 +22,9 @@ class DashboardRouter extends StatelessWidget {
@override
Widget build(BuildContext context) {
final title = const Text("Arbiter", style: TextStyle(fontWeight: FontWeight.w800));
return AutoTabsRouter(
routes: routes,
transitionBuilder: (context, child, animation) => FadeTransition(
@@ -58,9 +61,12 @@ class DashboardRouter extends StatelessWidget {
onSelectedIndexChange: (index) {
tabsRouter.navigate(routes[index]);
},
leadingExtendedNavRail: title,
leadingUnextendedNavRail: title,
selectedIndex: currentActive,
transitionDuration: const Duration(milliseconds: 800),
internalAnimations: true,
trailingNavRail: const _CalloutBell(),
);
},