skip to Main Content

debugShowCheckedModeBanner Not remove debugShowCheckedModeBanner:false – Flutter

I'm trying to remove the debug banner from my application and I added debugShowCheckedModeBanner: false in my main.dart and every activity but still showing the debug banner. Main.dart import 'package:firebase_core/firebase_core.dart'; import 'package:flutter/material.dart'; import 'package:intrackapp/login/splash_screen.dart'; import 'package:khalti_flutter/khalti_flutter.dart'; import 'login/firebase_options.dart'; Future<void> main()…

VIEW QUESTION

placemarkFromCoordinates geocoding error on flutter

No implementation found for method placemarkFromCoordinates on channel flutter.baseflow.com/geocoding Here is my Location Provider code: List<Placemark> placemarks = await placemarkFromCoordinates(latitude, longitude); selectedAddress = placemarks.first; I have tried changing the method but i dont understand the root of the erro. Is…

VIEW QUESTION

Flutter giving No known class method for selector 'appleCredentialWithIDToken:rawNonce:fullName:'

I updated my flutter project's following two dependencies: firebase_auth: ^4.4.0 firebase_core: ^2.9.0 And since then whenever I try to launch the project I get ARC Semantic Issue (Xcode): No known class method for selector 'appleCredentialWithIDToken:rawNonce:fullName:' /Users/saadbashir/.pub-cache/hosted/pub.dev/firebase_auth-4.4.0/ios/Classes/FLTFirebaseAuthPlugin.m:592:26 Following are the dependencies…

VIEW QUESTION
Back To Top
Search