Initial commit

This commit is contained in:
Yas Opisso
2025-12-12 14:31:36 -05:00
commit 83775bdc72
175 changed files with 17284 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter/cupertino.dart';
import 'package:modal_bottom_sheet/modal_bottom_sheet.dart';
class HomeViewMap extends StatefulWidget {
const HomeViewMap({super.key});
@override
State<HomeViewMap> createState() => _HomeViewMapState();
}
class _HomeViewMapState extends State<HomeViewMap> {
@override
Widget build(BuildContext context) {
return CupertinoScaffold(body: const Center(child: Text('MAPS')));
}
}