mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
79 lines
1.9 KiB
Dart
79 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lunasea/core.dart';
|
|
import 'package:lunasea/router/routes/settings.dart';
|
|
|
|
class DebugMenuRoute extends StatefulWidget {
|
|
const DebugMenuRoute({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
State<DebugMenuRoute> createState() => _State();
|
|
}
|
|
|
|
class _State extends State<DebugMenuRoute> with LunaScrollControllerMixin {
|
|
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LunaScaffold(
|
|
scaffoldKey: _scaffoldKey,
|
|
appBar: _appBar(),
|
|
body: _body(),
|
|
);
|
|
}
|
|
|
|
PreferredSizeWidget _appBar() {
|
|
return LunaAppBar(
|
|
title: 'settings.DebugMenu'.tr(),
|
|
scrollControllers: [scrollController],
|
|
);
|
|
}
|
|
|
|
Widget _body() {
|
|
return LunaListView(
|
|
controller: scrollController,
|
|
children: [
|
|
LunaBlock(
|
|
title: 'UI',
|
|
trailing: const LunaIconButton(icon: LunaIcons.ARROW_RIGHT),
|
|
onTap: SettingsRoutes.DEBUG_MENU_UI.go,
|
|
),
|
|
const LunaHeader(text: 'Boxes'),
|
|
LunaBlock(
|
|
title: 'Clear Alerts Box',
|
|
onTap: () async {
|
|
await LunaBox.alerts.clear();
|
|
showLunaSuccessSnackBar(
|
|
title: 'Cleared',
|
|
message: 'Cleared Alerts Box',
|
|
);
|
|
},
|
|
),
|
|
const LunaHeader(text: 'Toasts'),
|
|
LunaBlock(
|
|
title: 'Info',
|
|
onTap: () async => showLunaInfoSnackBar(
|
|
title: 'Info',
|
|
message: null,
|
|
),
|
|
),
|
|
LunaBlock(
|
|
title: 'Success',
|
|
onTap: () async => showLunaSuccessSnackBar(
|
|
title: 'Success',
|
|
message: null,
|
|
),
|
|
),
|
|
LunaBlock(
|
|
title: 'Error',
|
|
onTap: () async => showLunaErrorSnackBar(
|
|
title: 'Error',
|
|
message: null,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|