Questions tagged [flutter-ios]

356 questions
0
votes
2 answers

Flutter ios: I'm getting "(No implementation found for method Firebase#initializeCore on channel plugins.flutter.io/firebase_core)", can't see why

I'm new to flutter and I've received a "working Android" project which I should adapt to iOS, at least I need it to make it boot and such. After some reading here and there and then some additional googling I've come with a version of the flutter…
Isaac
  • 1,794
  • 4
  • 21
  • 41
0
votes
1 answer

How to show loader while loading image using file path in flutter?

How to show loader before loading complete image from file? Before loading image in Imageview it takes some time before image is visible to user. Image.file( File(selectedImagePath), width: double.infinity, height: double.infinity, ),
0
votes
0 answers

Microphone stops working in Flutter iOS app using flutter_inappwebview when it goes to the background

I'm using flutter_inappwebview to show a webview, that has webrtc capabilities, using both camera and video it works fine until the app is set to the background. When the app is minimized (goes to background), I can still hear other users on the…
0
votes
2 answers

Is it possible to use 2x assets on a 3x device in Flutter

I have a iOS and Android app, written in Flutter. I have an assets folder with png files, structured in standard Flutter fashion with 1.5x, 2x, 3x and 4x sub-folders. I have added this to pubspec.yaml: assets: - assets/ This works fine. But…
Nicolai Henriksen
  • 1,324
  • 1
  • 13
  • 37
0
votes
1 answer

Mac M1 -- Error launching application on iPhone 12 Pro Max.(Flutter.h and AMSupportURLConnectionDelegate, AMSupportURLSession) issue

I am new to ios development with flutter. While trying to build the app on ios simulator and external device (iphone xr), I get the following error-- objc[50354]: Class AMSupportURLConnectionDelegate is implemented in both ?? (0x1f3d2c188) and ??…
Rohit
  • 33
  • 1
  • 3
0
votes
1 answer

data from http request to convert string to list of LatLng in flutter

String map = widget.list[widget.index]['map']; example for "[LatLng(12.82879876203614, 80.12908793985844),LatLng(12.83370395257544, 80.1245865225792),LatLng(12.839642030904889, 80.12061484158039),]" the data of map is now string but I want LatLng…
0
votes
1 answer

XCode keep search for flutter windows path

I try to build IOS version to my flutter app I'm using virtual box with macOC catalina after edit flutter & app path in XCode like: when I start to build app archive, XCode show this code That mean its still looking for flutter windows path…
Slackgate
  • 15
  • 5
0
votes
1 answer

Flutter ios Google Authentification without firebase error

I'm trying to set up my app without firebase services, but I've faced the issue with Google Authentification. The error message is following: Runner[9138:3105633] [VERBOSE-2:ui_dart_state.cc(199)] Unhandled Exception:…
Vanfen
  • 131
  • 4
  • 13
0
votes
1 answer

Cannot save the Image into the Device in Flutter?

I am trying to save an image in local device using sqllite. I am using the edge_detection library to get the cropped image path and trying save it into the device. This is my table: class DBHelper { static Future database() async { …
cvsrt
  • 357
  • 4
  • 19
0
votes
1 answer

Image URI not loading in flutter ios

I'm creating a native app where I'm using image URI instead of png or jpg image just to reduce the size. But the issue is that the image URI is not loading/showing in ios. I tried on android and the web it's working. Here is the code //Image URI var…
Marsad
  • 859
  • 1
  • 14
  • 35
0
votes
1 answer

Issues with asset images in pod dependency - Flutter

I'm trying to integrate a Swift CocoaPod into my Flutter proof of concept app. The pod contains UI components, including UIImages that are kept in the pod's Assets.xcassets. Everything related to the pod dependency is working except for the image…
Diana
  • 21
  • 6
0
votes
0 answers

Could not build the application for the simulator Flutter IOS

I have this problem when i update my mac os to Big Sur and Xcode. My flutter V is 1.22.5. application is working fine in android this problem in IOS side. I search over the internet and i try all solution but still not working. i tried removing…
prg.dev
  • 141
  • 1
  • 3
  • 16
0
votes
0 answers

Can't receive iOS notifications w Flutter/Firebase cloud messaging 10.0.1+

I've been struggling with iOS push notifications on Flutter via FCM for a LONG time. It seems like it was a lot more complicated before the latest big updates to flutter and firebase, but I'm not really sure exactly what has changed. I am receiving…
0
votes
1 answer

'Flutter/Flutter.h' file not found

How fixed this problem ? Android work fine. But IOS doesn't work.
Eray Hamurlu
  • 657
  • 7
  • 9
0
votes
0 answers

Flutter Video recording is returning exception when I am stoping the video recording

I am working on flutter camera, Video recording through camera is working perfectly on android devices, but on IOS devices it is returning me Error: "Error Message: Video is not recording!". Code of starting video recording, and stopping is: …
Faizan Ahmad
  • 352
  • 4
  • 20