iloads

Results 6 comments of iloads

Am asking for Background (No.2) . I can able to start the plugin in Foreground and Terminated state.

Find code below. In this, we call the method "startLocationUpdates('from Background Notification')", when notification received. ```dart void main() { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); final NotificationAppLaunchDetails? notificationAppLaunchDetails = await flutterLocalNotificationsPlugin.getNotificationAppLaunchDetails(); const AndroidInitializationSettings...

``` void main() { await Firebase.initializeApp(); FirebaseMessaging.onBackgroundMessage(myBackgroundMessageHandler); } Future myBackgroundMessageHandler(RemoteMessage message) async { await Firebase.initializeApp(); startLocationUpdates('from Background Notification'); } ```

Hi @christocracy , Actually, we currently using Flutter SDK 2.5.2 stable Flutter info (flutter doctor): [√] Flutter (Channel stable, 2.5.2, on Microsoft Windows [Version 10.0.19044.1706], locale en-IN) • Flutter version...

How to achieve int? stopTimeout; to 0 minutes so that when the device changes from Motion state to Stationery state the device still sends lat / long every 1 minute?...