202,441 questions
0
votes
1
answer
25
views
Does one key generated by the fire base service account work for all the app under one project
So, I have a project called XYZ with two apps: xyz.dev and xyz.prod. I need to add Firebase App Distribution, which requires generating a key from a service account. My question is, will the generated ...
0
votes
2
answers
79
views
Fixing issue for CustomScrollView for flutter
@override
Widget build(BuildContext context) {
return Scaffold(
body: RefreshIndicator(
onRefresh: () async => refreshControllers(),
child: Stack(
children: [
...
0
votes
0
answers
27
views
Swift not applying flags to application being opened (Flutter native code)
I have a Flutter plugin which needs to launch an app, but it must include a specific flag which changes application behavior. However, this is not working from within my native Swift macOS code, ...
1
vote
2
answers
75
views
Flutter doesn't load data from Firestore Database
I'm trying this code:
try {
print("via!");
QuerySnapshot qs = await FirebaseFirestore.instance
.collection('muscle_groups')
.get();
print(qs.docs.length);
...
0
votes
0
answers
52
views
Issues with Text and Icons in Dart Form After Flutter Update
After updating Flutter to a new version, sometimes text and icons do not display correctly inside a Dart form. Can anyone suggest what the issue might be?
When run app on emulator in debug console i ...
-2
votes
0
answers
35
views
In case fresh install flutter - The application may be doing too much work on its main thread [closed]
I am using the latest android. When I installed the new flutter then ran it, following is the log:
I/Choreographer( 6324): Skipped 210 frames! The application may be
doing too much work on its main ...
0
votes
0
answers
25
views
UI Google maps has slight differences between Android and IOS
I'm using google_maps_flutter, I have a small question
Currently, I see that the map on Android seems closer than IOS even though I set them to the same zoomLevel.
Is this due to the OS or the map ...
0
votes
1
answer
30
views
uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library
i am new to flutter i was facing some issues i solved it one by one but i am stuck in this one problem
when i try to rebuild the project after syncing gradle and cleaning the project
i am getting
uses-...
0
votes
0
answers
25
views
Flutter and Supabase Authentication opens email confirmation in web page instead of app
I'm making an app with Flutter and Supabase. First, I wanted to implement a sign-up function, and after signing up, I was able to implement the part where a confirmation email arrives.
When I receive ...
0
votes
2
answers
30
views
Flutter iOS appclip can't connect to internet
My flutter appclip cant make any server requests, doesn't matter what URL I call
it fails with Unhandled Exception: SocketException: OS Error: No route to host,
Same app, running in normal app mode (...
0
votes
2
answers
27
views
In Flutter inappwebview i want to pass data from flutter to javascript. Both domain are different. How to pass parameters in javascript function?
Im calling an html page in flutter using flutter_inappwebview package. Now i have create a function in javascript and i want to pass data in the function from flutter.I want solution that will work ...
1
vote
0
answers
71
views
Implementing customnavbar and custom menu drawer in flutter
I'm creating this app UI, I'm currently on the home screen UI integrating the simple navigation functionality of a bottom navbar and the menu drawer, I noticed that when I tried to insert the custom ...
0
votes
0
answers
23
views
Is there are way to fix issue module not found amplify cognito auth?
I am building the flutter application for the test flight but there is issue with the amplify auth cognito when building to test flight. I get following error Module 'amplify_auth_cognito' not found ...
0
votes
1
answer
48
views
Flutter Provider TypeError: 'Null' is not a subtype of type 'String'
Issue:
I'm using provider 6.1.2 in my Flutter project, and I'm encountering this error:
══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════
The following _TypeError was ...
1
vote
1
answer
36
views
Razorpay payment screen opening multiple times in Flutter
I am integrating Razorpay into my Flutter application, but I am facing an issue where the Razorpay payment screen opens multiple times when the user initiates a payment by clicking the payment button ...
2
votes
1
answer
74
views
Flutter Build Fails: Registrar Not Found in razorpay_flutter & paytm_allinonesdk
I'm working on a Flutter project that includes razorpay_flutter and paytm_allinonesdk plugins. When I try to build the project, I get the following errors:
error: cannot find symbol
import io....
1
vote
3
answers
60
views
How to correctly set the initial page size while implementing a lazy loading listview in Flutter?
I'm trying to implement a lazy loading listview in my Flutter app. Basically when user scrolls to bottom, we fetch more data from the server. Let's say there are totally 100 items and I fetch 10 of ...
0
votes
0
answers
35
views
Calendar doesn't work in production only flutter [closed]
So, i've developed a calendar in flutter, it should load in the selected days three informations: medicine, events and meals. In debug mode it works just fine, but in production when i try to access ...
0
votes
0
answers
42
views
FutterMap with CrsSimple wrong dimensions for tiles
I'm working on a Tile Viewer using the FlutterMap package, and I'm facing issues with displaying tiles correctly based on zoom level and position.
Goal
Display tiles correctly in the FlutterMap ...
0
votes
0
answers
25
views
Flutter web app, compute heavy task on another thread
i need help to understand how on flutter web app use another thread instead of main to compute heavy task. There is a problem that while flutter tries to compute heavy task, it freezes the main thread ...
0
votes
0
answers
21
views
Issues with ChatAI Implementation Using Poe API in Flutter
I am trying to implement a simple ChatAI application using the Poe API in Flutter, but I am encountering issues where the chat functionality is not working as expected. Here is my code for reference:
...
3
votes
2
answers
622
views
How to resolve "Synthetic package output (package:flutter_gen) is deprecated" warning in Flutter 3.29.0?
After upgrading Flutter to version 3.29.0 and Dart to version 3.7.0, I started seeing the following warning in the console when running my app on both Android and iOS:
Synthetic package output (...
-1
votes
0
answers
31
views
Play audio on Flutter web from blob
I have a Flutter web app and use the record package to record an audio file. The result is a blob blob:http://localhost:54447/4f768a9f-dcb3-4011-9792-43e2bdafa801. How can I play this using just_audio`...
0
votes
0
answers
27
views
Live Activity Not Updating via Push Notification (Success Response, but Fails to Decode Content State)
For my flutter project I have created live activity using plugin https://pub.dev/packages/live_activities
I've created live activity and it is displaying fine. Now I’m trying to update my Live ...
0
votes
0
answers
10
views
Unknown type name when opening Runner.xcworkspace within Xcode error
Whenever I try to build my app in Xcode, TflitePlugin has many errors such as unknown type name "TfLiteTensor" and unknown type name "TfLiteModel". I would imagine this is caused ...
0
votes
0
answers
15
views
flutter speech_to_text package, audio not getting recorded and not getting transcribe
so i have this app with a custom nav bar and have a small button in its center with a voice recording feature that transcribes the audio and submits it to the ML model in the backend for processing
...
2
votes
1
answer
121
views
How to use Immediate updates android in flutter
I'm newbie with flutter
anyone can help me, how to use Immediate updates with flutter ?
I have google play console, I want user must has new version to use the application,
I know there is ...
0
votes
0
answers
34
views
Multiple widget used same key
I have a persistent navbar component for navbar. Getting duplicate key error when logout and login. if we switch tab error is gone
════════ Exception caught by widgets library ═════════════════════════...
0
votes
1
answer
34
views
FATAL EXCEPTION: Firebase Blocking Thread #0 - Firebase Auth / Flutter crashes on mobile auth verification
While setting up Firebase Auth for my Flutter application using the flutterfire package, I followed the recommended setup steps by adding the package via flutter pub get and then running flutterfire ...
0
votes
0
answers
24
views
My team mate gives me Github repostorey Zip file i have run into my Android Studio but i got error and again about kotlin and java compatability
FAILURE: Build failed with an exception.
What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm ...
1
vote
2
answers
54
views
Listview does not scroll to the end but only to a certain point and i don't know why. flutter
I creating chatbot app, and i have a problem with listview when i send message listview scroll only to certain point but should to the end.
import 'package:ai_language_learning_app/features/chat/...
0
votes
1
answer
98
views
+50
App check on flutter web - debug token not working
My AppCheck debug token is statically set, and was added to my account under "Manage debug tokens" for my webapp:
Both reCAPTCHA and reCAPTCHA Enterprise are enabled.
My code is as follows:
...
-3
votes
0
answers
26
views
Basic Flutter Command Lines [closed]
FLUTTER
Flutter Basic Command
flutter clean
flutter pub get
APK GENERATING
flutter build apk
flutter build ipa(ios)
Flavor based apk generating
flutter run apk –flavour dev -t lib/application/main/...
0
votes
0
answers
21
views
Flutter & DRF full stack - Flutter Error: type 'Null' is not a subtype of type 'String' in type cast
I'm using Djangorestframework (DRF) as backend and flutter with Getx package as frontend. in the DB i have a model that contains image and file fields.
in my models.py:
class Member(models.Model):
...
-1
votes
0
answers
21
views
Do newer iPhones require additional settings to access an app's files?
I developed an iOS app to download files from a certain cloud server.
To view the downloaded files, I enabled file sharing in my iOS app using:
<key>UIFileSharingEnabled</key>
<true/>...
0
votes
2
answers
47
views
CocoaPods Error: "CocoaPods could not find compatible versions for pod "Sentry/HybridSDK"
I'm working on a Flutter project that uses the sentry_flutter package. When I try to run pod install inside the ios directory, I get the following error:
Analyzing dependencies
[!] CocoaPods could not ...
0
votes
0
answers
29
views
Flutter on Windows Cannot Send HTTP Request to Node.js Server Running on WSL 2
I am developing a Flutter application that interacts with a Node.js (Express) server running on WSL 2 (Ubuntu). My problem is that Flutter fails to send an HTTP request to the Node.js server, even ...
0
votes
0
answers
21
views
NavigationRail onTap indicator is not centered to the icon
On Material 2, this works just fine where the indicator is centered fine. However, after migrating to Material 3, the indicator is off-centered (moved to the top). I want to do either:
Use circular ...
-3
votes
0
answers
29
views
what Could be the solution [closed]
Multiple build operations failed.
Could not create task ':google_sign_in_android:generateDebugUnitTestConfig'.
Could not create task ':path_provider_android:generateDebugUnitTestConfig'.
Could not ...
2
votes
2
answers
66
views
How to expand panel with fab button to show more options?
My current code:
import 'package:flutter/material.dart';
class CustomBottomNavBar extends StatefulWidget {
final VoidCallback onStartPressed;
final VoidCallback onSettingsPressed;
final ...
0
votes
1
answer
60
views
Android Studio's auto complete is extremely slow in Flutter
Every now and then Android Studio's auto complete became slow and unresponsive, please check attached image, it's loading for a while and usually responds with no result.
There is same problem in ...
0
votes
1
answer
42
views
i have used device_info_plus package to my flutter application to get id of the mobile device
As i have used device_info_plus package to my flutter application to get id of the mobile device but the device id chaged for the same application in some device
Why it is changed and also is there ...
0
votes
1
answer
37
views
Cannot run (simulate) Open Street Map on Flutter
Why when I launch my Flutter Application via flutter run --debug using Google Map and Open Street Map (depending on the choice defined from the Backend of one of the two maps), I have the following ...
0
votes
1
answer
66
views
I want to get 3 diff textfield but I'm getting only 1
I want to generate upi payment QR in flutter, but I'm not getting 3 diff text fields. I even tried different ways, but I'm only getting one textfield to enter data and it is working only as text.
if (...
1
vote
0
answers
36
views
Firebase Realtime Database not working properly when offline on ios
I am trying to create a counter app on flutter using firebase realtime as my database. Have enabled persistence and also syncing all the paths to enable offline capabilities. Everything works fine on ...
1
vote
0
answers
25
views
Flutter Cannot Send HTTP Request to Node.js Server Running on WSL 2
I am developing a Flutter application that interacts with a Node.js (Express) server running on WSL 2 (Ubuntu). My problem is that Flutter fails to send an HTTP request to the Node.js server, even ...
1
vote
1
answer
31
views
Gray screen in release version on pageView
I have a problem that the release version shows a gray screen instead of the desired content, although everything works in debug, what could be the reason for this and how to solve the problem?
I have ...
1
vote
1
answer
27
views
Gradle in flutter
FAILURE: Build failed with an exception.
* Where:
Build file 'E:\new epads\epads-ppra-epads.mobileapplication.flutter-c9460f2b2f3c\android\app\build.gradle' line: 1
* What went wrong:
A problem ...
0
votes
0
answers
10
views
No podspec found for permission_handler in .symlinks
I got this error while try run pod install on my flutter project
-> Fetching podspec for `permission_handler` from `.symlinks/plugins/permission_handler/ios` [!] No podspec found for `...
1
vote
1
answer
63
views
Gradle: Could not create an instance of type org.jetbrains.kotlin.gradle.plugin.mpp.KotlinAndroidTarget
Please help me fix this issue.I recently updated the latest versions of Flutter, Dart, Java, and Android Studio. I have been encountering problems when trying to Flutter run my project. The errors are ...