feat: map widget with controller

This commit is contained in:
2025-05-21 09:17:37 +03:30
parent ed75da4eaa
commit b5406a00a0
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import 'package:get/get.dart';
class MapLogic extends GetxController {
}

View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'logic.dart';
class MapPage extends GetView<MapLogic> {
const MapPage({super.key});
@override
Widget build(BuildContext context) {
return Container();
}
}