🎉 Initial Commit

This commit is contained in:
2024-08-14 23:43:21 +08:00
commit cb011ddcf9
135 changed files with 5592 additions and 0 deletions

10
lib/screens/query.dart Normal file
View File

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class QueryScreen extends StatelessWidget {
const QueryScreen({super.key});
@override
Widget build(BuildContext context) {
return const SizedBox();
}
}

10
lib/screens/settings.dart Normal file
View File

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
const SettingsScreen({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}