| 123456789101112131415161718192021 |
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import '../../generated/assets.dart';
- import '../../screen.dart';
- class MapView extends GetView {
- const MapView({super.key});
- @override
- Widget build(BuildContext context) {
- // final PageTopController c = Get.find();
- return Container(
- color: Colors.lightGreen,
- width: context.width,
- height: context.height,
- // margin: const EdgeInsets.symmetric(horizontal: 0, vertical: 0),
- child: Text("MapView"),
- );
- }
- }
|