200,975 questions
0
votes
0
answers
12
views
lookupResolvedPackageUris RPC result contained more results than the request in flutter in real device
how to solve this issue. when I run my app on my real device then I got this following error:
lookupResolvedPackageUris result contained more results than the request. See https://github.com/dart-...
1
vote
0
answers
9
views
iOS ImagePicker shows all photos again after selecting “Limited Access” in Flutter – how to restrict to previously selected images?
I am working on a Flutter application where users upload documents (invoice / payment proof) from the gallery.
On iOS, when the app requests photo access and the user selects “Limited Access”, the ...
1
vote
0
answers
32
views
The widget Link shows the url of other widget on the page
I have list of cards, that handle click like this:
class _Clickable extends StatelessWidget {
const _Clickable({required this.absolutePath, required this.child});
final String absolutePath;
...
0
votes
0
answers
35
views
Integration of ml model to flutter application that works totally offline [closed]
this application is totally offline and i tried to add ml model to the application but it did not support the file type and only support(tflite_flutter).
local_notification (it is also not working)
...
0
votes
0
answers
23
views
MenuAnchor children Semantic is not reachable by Web Element inspector when inside a Horizontal Scrollable widget
I'm using https://watermelon.us for writing automation tests for my Web app. When a test case starts, Watermelon will start the web app and then automatically record my actions when I interact with it,...
-1
votes
0
answers
40
views
Unable to upload my app with Transporter. Some kind of version mismatch? [duplicate]
I'm having an issue with my Flutter app, it builds ok but when moving it to Transporter to get it on App Store Connect I get a message:
Validation failed (409)
Invalid Bundle. The bundle Runner.app/...
1
vote
0
answers
56
views
WebView Flutter localhost:8888 redirect not working on iOS Version 26.2 with webview_flutter 4.13.0
I'm implementing OAuth authentication in my Flutter app using webview_flutter: ^4.13.0. The OAuth flow redirects to
http://localhost:8888 for the callback, but this is only failing on iOS Version 26.2 ...
1
vote
0
answers
44
views
Visual Studio Code debugger not catching breakpoint in first Flutter template app (running on Google Chrome))
I am trying to figure it out why while debugging in Visual Studio Code the first template Flutter app the debugger is not catching the instruction:
_counter++;
or
_counter--;
Here, I am attaching ...
Best practices
0
votes
3
replies
84
views
How to restrict user interaction on Android tablet in a Flutter app
I’m building a Flutter app that will run on a tablet placed in a café or retail store. The main requirement is to keep the app always visible and prevent users from:
Closing or minimizing the app
...
-1
votes
0
answers
48
views
flutter scroll?switch?odometer?digit animation? [closed]
I’m trying to create a number animation in Flutter where the value changes directly without counting or scrolling through intermediate numbers.
The behavior I want is:
The old number slides down and ...
0
votes
0
answers
40
views
Running Gradle task 'assembleDebug'... Exception in thread "main" java.util.zip.ZipException: zip END header not found [closed]
Exception in thread "main" java.util.zip.ZipException: zip END header not found
at java.base/java.util.zip.ZipFile$Source.findEND(Unknown Source)
at java.base/java.util.zip.ZipFile$...
0
votes
0
answers
61
views
Cannot disable the chart scrolling on Y-axis on Highcharts flutter
I've been working with highchart's line chart to plot some data and that has worked fine. The only thing I cannot seem to find is, how to disable this movement on Y axis. I've tried disabling the ...
0
votes
0
answers
89
views
Flutter Firebase rtdb works on Android but not on iOS (snapshot.exists = false)
I’m using Flutter + Firebase Realtime Database for a quiz battle feature.
Everything works correctly on Android, but on iOS the same read returns empty data (snapshot.exists == false) without throwing ...
0
votes
0
answers
65
views
How to implement recurring animation in Flutter?
I am trying to create a rendition of a game called 'Two Cars' created by Ketchap studios.
I am not using any game engine, and trying to see how far I can get.
And I am failing to implement the ...
1
vote
2
answers
54
views
Firebase CloudFirestore rules only work after reopening the app
I'm using Firebase Authentication and Firebase Cloud Firestore for my Flutter project. But the rules I implemented in the Firestore only apply correctly after restarting the app, if the user just ...