导航栏代码,配置文件

This commit is contained in:
2025-11-03 14:19:21 +08:00
parent ac8a6387ef
commit 32fa975fb2
30 changed files with 2014 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import 'package:getx_scaffold/getx_scaffold.dart';
class MapController extends GetxController with BaseControllerMixin {
@override
String get builderId => 'map';
MapController();
@override
void onInit() {
super.onInit();
}
@override
void onClose() {
super.onClose();
}
}