Restructure some things

This commit is contained in:
zontreck 2025-01-31 14:23:15 -07:00
parent 99f15fda36
commit d4bbca6405
9 changed files with 174 additions and 81 deletions

21
lib/tests/tester.dart Normal file
View file

@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
import 'package:libacflutter/tests/alert.dart';
import 'package:libacflutter/tests/prompt.dart';
class WidgetTest extends StatelessWidget {
String route;
WidgetTest({super.key, required this.route});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark(),
routes: {
"/testprompt": (context) => TestPrompt(),
"/testalert0": (context) => TestAlert()
},
home: TestPrompt(),
);
}
}