feat: add Flutter schema-driven form cards

This commit is contained in:
selfrelease
2026-07-18 09:13:27 +08:00
parent e13b6c7778
commit 2105fe3bac
85 changed files with 3141 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
import 'package:aioa_mobile/app/router.dart';
import 'package:aioa_mobile/app/theme.dart';
import 'package:flutter/material.dart';
class AioaApp extends StatelessWidget {
const AioaApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp.router(
title: 'AIOA',
debugShowCheckedModeBanner: false,
theme: buildAioaTheme(),
routerConfig: appRouter,
);
}
}