Track látszik a terepi bejárás térképen is, gps log jelvesztéskor.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:package_info_plus/package_info_plus.dart';
|
||||
@@ -154,9 +155,17 @@ class AppDrawer extends StatelessWidget {
|
||||
ListTile(
|
||||
leading: const Icon(Icons.volume_up_outlined),
|
||||
title: const Text('Hang és rezgés'),
|
||||
onTap: () {
|
||||
Get.back();
|
||||
onTap: () async {
|
||||
// Get.back();
|
||||
// Get.to(() => const FeedbackSettingsView());
|
||||
await FirebaseCrashlytics.instance.recordError(
|
||||
Exception('Teszt hiba - breadcrumb ellenőrzés'),
|
||||
StackTrace.current,
|
||||
reason: 'Manuális teszt',
|
||||
fatal: false);
|
||||
await FirebaseCrashlytics.instance.sendUnsentReports();
|
||||
|
||||
Get.back();
|
||||
},
|
||||
),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user