Questions tagged [flutter-ios]
356 questions
6
votes
6 answers
Can't build a flutter project with PathProvider dependency
Disclaimer: First of all, this is my early attempt to play with Flutter. So forgive me if is a noob question.
I had been playing with an MVP-Clean architecture for Flutter apps in iOS, and when trying to build a data source where I can persist data…

MiguelCatalan
- 916
- 10
- 26
5
votes
0 answers
Flutter BackDrop filter not working in IOS device
In android device backdrop filter working well but in IOS device background not be blur.
Widget commonBottomButton(String imagePath) {
return ClipOval(
child: BackdropFilter(
filter: ImageFilter.blur(
sigmaX: 50.0,
sigmaY: 50.0,
…

Mihir patel
- 94
- 7
5
votes
1 answer
how do i resolve, "Lexical or Preprocessor Issue (Xcode): Flutter/Flutter.h' file not found"?
In file included from /Users/shaifdihan/development/flutter/.pub-cache/hosted/pub.dartlang.org/webview_flutter_wkwebview-2.7.1/ios/Classes/JavaScriptChannelHandler.m:5:
…

Shaif Mohammad Reasat Dihan
- 131
- 1
- 11
5
votes
2 answers
Futter: Cannot find 'kGADAdSizeBanner' in scope
Error on iOS:
Cannot find 'kGADAdSizeBanner' in scope
Line:
private var adSize: GADAdSize = kGADAdSizeBanner
Package:
native_admob_flutter
Extra info:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable,…

Dani
- 3,128
- 2
- 43
- 91
5
votes
0 answers
How to check which permissions used by dependencies in flutter project?
I am working on the flutter application, where I have used several dependencies in my project as mentioned below:
flutter_downloader: ^1.6.1
cupertino_icons: ^1.0.0
font_awesome_flutter: ^8.4.0
fluttertoast: ^8.0.6
http: ^0.13.3
connectivity:…

Kishan sharma
- 701
- 1
- 6
- 20
5
votes
0 answers
"handle" function is not being called in Flutter iOS plugin
We have created a Flutter plugin where iOS code is written in Swift-
import UIKit
import CooeeSDK
public class SwiftCooeePlugin: NSObject, FlutterPlugin {
var sdkInstance = RegisterUser.shared
static public func register(with…

Shashank Agrawal
- 25,161
- 11
- 89
- 121
5
votes
1 answer
Flutter url_launcher open Facebook link inside app(Facebook) installed but in IOS it just open facebook and not the link
I have used Url_launcher package;I want to open Facebook link in facebook app if app installed else the browser.This nicely works in Android but in IOS it only open the Facebook app not the link.
The code is :
String digital_url=…

Sunil
- 143
- 1
- 2
- 11
4
votes
2 answers
Flutter build IOS on windows
I'm working on a flutter project and I want to build the IPA of my code using windows. I don't want to test the application in my windows I want just to build the IPA. Is it possible to do it. Any help is highly appreciated.

dina robert
- 241
- 3
- 10
4
votes
9 answers
How can solve this issues? Error (Xcode): Framework not found Flutter
How can solve this issues? Error (Xcode): Framework not found Flutter
I tried to more methods,
tried to delete ios then pod install...
tried to flutter clean...
tried to create new project etc.
but still cannot solve.
Launching lib/main.dart on…

Stanley
- 311
- 5
- 15
4
votes
0 answers
Flutter iOS - How to hide the DONE button at the top of the ios keyboard?
The DONE button doesn't work on Flutter Web (Safari, Chrome).
I just added a Textformfield Widget to 'Counter Example Project' and built it on Chrome.
And I access the same Localhost URL on the iOS simulator.
As you can see in the GIF, when I press…

yunhankyu
- 76
- 3
4
votes
2 answers
Pod install fails on m1 macbook
Error in running pod install.
I've been trying to run pod install but it keeps failing on all projects, I even created new projects from scratch to eliminate the suspicion that it might be an error in the configuration but it also failed .
I've…

Sammy Mishal
- 61
- 2
- 5
4
votes
2 answers
Flutter CocoaPods could not find compatible versions for pod "FirebaseCore"
I am trying to build an IOS flutter project but it is keep complaining about the compatible versions for pod. I have already tried many threads since last two days but not able to resolve the issue. However my Android version is working fine.
I…

Sam
- 2,972
- 6
- 34
- 62
4
votes
1 answer
Building iOS app on Flutter 2.0.4 error: 'Flutter/Flutter.h' file not found
I have been trying to run app on iOS from Android Studio. I have been getting error
/Users/apple/StudioProjects/example-app/ios/Runner/Runner-Bridging-Header.h:1:9: note: in file included from…

Manoj MM
- 480
- 1
- 5
- 15
4
votes
0 answers
Ios Flutter, App asks for sign in on launch
I was working on firebase messaging today for my flutter app and I followed several steps for ios version here. My app keeps on asking me for Apple ID and password whenever I launch the app on iOS simulator. If i press cancel or leave and reopen the…

cs guy
- 926
- 2
- 13
- 33
4
votes
3 answers
Why webview_flutter not working in case of add to app (iOS)?
So I am trying to open a simple webview when a button is clicked.
This is the body of my Scaffold widget:
body:
WebView(
initialUrl: "https://www.google.com/",
javascriptMode: JavascriptMode.unrestricted,
)
The interesting part is when I…

Let's_Create
- 2,963
- 3
- 14
- 33