added debug windows

This commit is contained in:
2023-11-28 15:58:37 +05:30
parent 6f084b2349
commit 0af1b3139c
3 changed files with 149 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import 'package:rogapp/utils/database_helper.dart';
import 'package:rogapp/utils/text_util.dart';
import 'package:rogapp/widgets/base_layer_widget.dart';
import 'package:rogapp/widgets/bottom_sheet_new.dart';
import 'package:rogapp/widgets/debug_widget.dart';
class MapWidget extends StatelessWidget {
final IndexController indexController = Get.find<IndexController>();
@ -228,7 +229,12 @@ class MapWidget extends StatelessWidget {
)
: const Center(child: CircularProgressIndicator()),
],
))
)),
const Positioned(
bottom: 10,
left: 0,
child: DebugWidget(),
)
],
);
}