95,825 questions
0
votes
0
answers
29
views
Flutter Text Field's cursor never appear and text always selected
After upgrading to Flutter 3.41, I'm facing a strange issue with TextField.
When I tap on a specific character to edit the text:
The entire text (or part of it) gets selected
The cursor does not ...
1
vote
1
answer
43
views
How to get reliable current time in Flutter when device time is changed (offline mode)? [closed]
I’m working on a Flutter application where I need to track accurate time (e.g., for attendance, session tracking, or time-based validations).
Question:
What is the best way to handle accurate time ...
-1
votes
0
answers
29
views
How to set up Google Sign-In for Jaspr using Supabase? [closed]
I'm using Jaspr for my web project and want to integrate Google OAuth via Supabase. What are the required steps?, Please help me
1
vote
1
answer
29
views
Flutter Geolocator returns different coordinates on iOS vs Android for same physical location, causing inconsistent reverse geocoding address
Problem
I'm using the geolocator package in Flutter to get the current location and then reverse geocode it to a display address. The same physical device location returns noticeably different ...
Advice
1
vote
1
replies
59
views
Is it common for itemBuilder code to run multiple times?
I have attached the code and output below. I am using ExpandablePageView package. The code has a print statement in the itemBuilder block which gives multiple output in the debug console. Why is this ...
0
votes
0
answers
79
views
Flutter + Shorebird patch causes crash loop on iOS (App Store build) after relaunch, works fine on Android
I’m facing an issue with Shorebird patching in my Flutter app where everything works fine on Android, but on iOS it results in a crash loop after the first relaunch.
Details
Flutter app using ...
0
votes
0
answers
70
views
Read and write binary data to postgresql from dart server app
Dart app (Server side) + shelf + postgres plugin, all latest version.
I'm trying to read / write binary data to postgresql table bytea field, the data is a binary protobuf message.
This is how I write ...
1
vote
1
answer
61
views
Flutter can’t read GPS EXIF from image, but Windows properties shows latitude and longitude
Why would Flutter/Dart fail to read GPS EXIF data from an image that clearly has latitude and longitude in Windows properties? Is this a limitation of the EXIF package, a problem with the image picker ...
1
vote
0
answers
66
views
Flutter on Windows: "Building with plugins requires symlink support" and start ms-settings:developers not working in PowerShell
I am working on a Flutter project on Windows 11.
My Flutter version is:
Flutter 3.41.6 • channel stable • https://github.com/flutter/flutter.git
Framework • revision db50e20168 (3 weeks ago) • 2026-03-...
Advice
0
votes
3
replies
72
views
How can I save a CSV file locally in a Flutter app so it persists within the app?
I'm building a Flutter app and I need to generate and save a CSV file from within the app. My goal is for the file to be stored locally on the device so that it persists between app launches and ...
0
votes
0
answers
60
views
How to go another TabBar Options while we are in page that has ScrollDirection: Axis.horizontal
I ran into a problem: I have a TabBar with three TabBarViews. We can easily navigate between the first and second pages.
import 'package:farahesab_accoutant/pages/items/models/branch_model.dart';
...
0
votes
1
answer
70
views
Flutter iOS: USSD code with * and # not launching in phone dialer (works on Android)
hello,
Flutter iOS: USSD code with * and # not launching in phone dialer (works on Android)
flutter ios ussd url-launcher tel-uri PROBLEM
My Flutter app executes USSD codes for mobile money recharges....
Best practices
0
votes
1
replies
110
views
How can I create a tab-style widget with seamless inverted/concave bottom corners in Flutter?
I’m trying to create a bottom-aligned tab widget. My current approach using overlapping shapes results in discontinuous edges and white gaps between the tab and the main container.
How can I achieve a ...
0
votes
0
answers
71
views
On running my flutter app which uses llama_cpp_dart package. It is showing error loading model
I am trying to run a gguf model using llama_cpp_dart v^0.2.2 package. But it is showing model cannot be loaded. The initialize function is what runs these. I checked the llama_cpp folder in lib\src of ...
Advice
0
votes
1
replies
154
views
Flutter Windows desktop - correct way to handle OAuth2 client_secret for Google Drive integration
I'm building a Flutter Windows desktop app that integrates with Google Drive.
I'm trying to determine the correct, secure approach for handling OAuth2
client_id and client_secret. We currently fetch ...