Questions tagged [flutter-ios]
356 questions
0
votes
1 answer
Flutter ios build fails
I was successfully able to build my app for android in codemagic, but ios is just killing me. I got all sorts of errors I've seen for the first time. Many of them I hope I resolved successfully, but I haven't find the answer for this…

Lukas Luke Stateczny
- 513
- 8
- 24
0
votes
1 answer
Flutter ListWheelScrollView shows only one item in list (ios) but displays well in web (dartpad)
I have been trying to use ListWheelScrollView and I am getting a quite strange result.
So this is the code that I am using to show WheelScroll of months.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp…

erluxman
- 18,155
- 20
- 92
- 126
0
votes
1 answer
Flutter App is Crashing After Installation
I'm getting this error...
Unable to solve this. Please help
App just crashed after installation.
What I have tried:
Added Google-services.plist from xcode
Add/Remo FirebaseApp.configure() in AppDelegate.swift
Added…

Sharjeel Ali
- 1,459
- 1
- 11
- 8
-1
votes
1 answer
Flutter does not build the project on real iOS device: PhaseScriptExecution
When I want to run my flutter application on the real iOS device, I get this error. I know, 2 weeks ago it worked nicely, but in this 2 weeks I developed lots of feature, and lastly permission handler future, and now I can not run the project on my…

alperefesahin
- 604
- 6
- 22
-1
votes
1 answer
Could not find a storyboard named 'NSPhotoLibraryUsageDescription' in bundle NSBundle in Flutter
I have a physical iPhone that I'm trying to run my Flutter code on. This is the error I'm getting. What's the issue?
Running "flutter pub get" in flutter_app...
Launching lib/main.dart on iPhone in debug mode...
Automatically signing iOS for device…

DanMossa
- 994
- 2
- 17
- 48
-1
votes
1 answer
Remove XCode files from mac except Simulator to reduce the size
I need to remove the Xcode from my mac to reduce the storage because it sized ~50GB now on my storage. But i need Simulator to test run my Flutter apps with iOS. Is there any way to reduce size of Xcode keeping the simulator running.

Navindu Kavishka
- 47
- 1
- 10
-1
votes
5 answers
Flutter plugin for a file picker that works on mobile and desktop that doesn't require go-flutter?
This seems like an issue that won't last for long, but I'm looking for a final solution for opening up a native file picker on all platforms including Desktop without installing go-flutter.
Currently I'm using file_selector plugin by Flutter.dev and…

Art C
- 842
- 2
- 10
- 21
-1
votes
1 answer
can i built an iOS app after creating it's android version's apk on same project on Flutter?
i have just finished coding of my android app and it is time to built it's apk but i want to create it's iOS version ipa to. i know i have to work on XCode on MAC for getting it's ipa output but i don't have any iOS device. nothing about Apple. so i…

kalfalarin_omer
- 75
- 6
-1
votes
1 answer
Is it possible to build the same IOS app on different Mac Machines
I'm new to IOS app development and I don't have a Mac machine. But I'm planning to get virtual Mac Machine from https://www.macincloud.com and start developing. I think when build and publish the app Xcode should automatically manage app signing and…

user2609021
- 681
- 2
- 11
- 30
-2
votes
1 answer
Flutter ios app lost connection on calling ImagePicker.getImage() with no error
This is the gif showing app crashed
https://media.giphy.com/media/Qm9PALMAtAw2W4AUzf/giphy.gif
onPressed: () => _pickImage(),
Future _pickImage() async {
image = await _picker.getImage(source: ImageSource.gallery);
}
There's no error message…

Fei Whang
- 209
- 4
- 11
-2
votes
1 answer
How to generate iOS build from Flutter so my client can test the app in their iPhone device?
I want to generate an iOS build from Flutter to test in a multiple physical iPhone devices. I'm using macOS. with latest xcode installed, flutter-sdk, dart sdk and Development editor tool using Android Studio. any one has experience with this…

Dhiren Basra
- 820
- 9
- 24