feat: map widget with controller
This commit is contained in:
5
packages/core/lib/presentation/widget/map/logic.dart
Normal file
5
packages/core/lib/presentation/widget/map/logic.dart
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import 'package:get/get.dart';
|
||||||
|
|
||||||
|
class MapLogic extends GetxController {
|
||||||
|
|
||||||
|
}
|
||||||
13
packages/core/lib/presentation/widget/map/view.dart
Normal file
13
packages/core/lib/presentation/widget/map/view.dart
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user