Login & create an account

This commit is contained in:
2025-04-24 23:02:28 +08:00
parent 36905e0cd5
commit d7d9e41db3
27 changed files with 1958 additions and 31 deletions

View File

@ -8,3 +8,12 @@ void showErrorAlert(dynamic err) async {
iconStyle: IconStyle.error,
);
}
void showInfoAlert(String message, String title) async {
FlutterPlatformAlert.showAlert(
windowTitle: title,
text: message,
alertStyle: AlertButtonStyle.ok,
iconStyle: IconStyle.information,
);
}

View File

@ -4,6 +4,9 @@ import 'package:auto_route/auto_route.dart';
import 'package:bitsdojo_window/bitsdojo_window.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:island/route.dart';
import 'package:island/route.gr.dart';
import 'package:material_design_icons_flutter/material_design_icons_flutter.dart';
import 'package:path_provider/path_provider.dart';
import 'package:responsive_framework/responsive_framework.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
@ -11,7 +14,8 @@ import 'package:styled_widget/styled_widget.dart';
class WindowScaffold extends StatelessWidget {
final Widget child;
const WindowScaffold({super.key, required this.child});
final AppRouter router;
const WindowScaffold({super.key, required this.child, required this.router});
@override
Widget build(BuildContext context) {
@ -75,7 +79,29 @@ class WindowScaffold extends StatelessWidget {
),
);
}
return child;
return Scaffold(
extendBody: true,
extendBodyBehindAppBar: true,
backgroundColor: Colors.transparent,
body: SizedBox.expand(child: child),
key: rootScaffoldKey,
bottomNavigationBar: NavigationBar(
destinations: [
NavigationDestination(icon: Icon(MdiIcons.compass), label: 'Explore'),
NavigationDestination(icon: Icon(MdiIcons.account), label: 'Account'),
],
onDestinationSelected: (idx) {
switch (idx) {
case 0:
router.replace(ExploreRoute());
break;
case 1:
router.replace(AccountRoute());
break;
}
},
),
);
}
}

View File

@ -3,7 +3,12 @@ import 'package:flutter/material.dart';
class UniversalVideo extends StatelessWidget {
final String uri;
const UniversalVideo({super.key, required this.uri});
final double aspectRatio;
const UniversalVideo({
super.key,
required this.uri,
required this.aspectRatio,
});
@override
Widget build(BuildContext context) {