95,823 questions
1
vote
0
answers
18
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
48
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
46
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
50
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
100
views
How to create a tab-style widget with seamless inverted/concave bottom corners in Flutter?
'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
56
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
142
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 ...
0
votes
1
answer
158
views
Code works in debug mode but not in release mode
I am building this app where a part of it runs OCR on a cropped box on the camera frame. In debug mode it was working perfectly and as expected, but once i build the app, some part seems to not ...
1
vote
0
answers
92
views
Embedded Flutter Dropdown/Overlay Web Element clipped by parent HTML element constraints
I am implementing Flutter Web Multi-View Embedding to integrate independent Flutter components into a React.js frontend. Following the official documentation, I am initializing each Flutter widget ...
-1
votes
0
answers
126
views
Flutter CERTIFICATE_VERIFY_FAILED on Android 13/14 but works perfectly on Android 16 (Sectigo CA)
I am developing a Flutter application that communicates with a live API server via HTTPS. The API calls work perfectly on an Android 16 device, but when I test the exact same code on devices running ...
0
votes
1
answer
47
views
Dart/Flutter hook bundles lib code assets into macOS framework without dot characters
my environment details:
=== dart info ===
- Dart 3.11.1 (stable) (Tue Feb 24 00:03:07 2026 -0800) on "macos_arm64"
- on macos / Version 26.3.1 (a) (Build 25D771280a)
- locale is en-US
#### ...
0
votes
0
answers
42
views
How to handle 401 and 403 Response status on Interceptor method with or without onError scope
I was Integrating my Backend to the flutter frontend but i am unable to handle 401 and 403 Status Code. Lest dive in a little more :
when the JWT expires it uses a refresh token to refresh the JWT ...
Advice
0
votes
0
replies
48
views
Accurate indoor location validation for Android attendance app (GPS unreliable in small areas)
I am currently in the planning phase of developing a mobile attendance system using Flutter (Dart). The system will use facial recognition to record attendance and automatically calculate payroll ...
2
votes
1
answer
94
views
How to add closed dynamic libraries to a Flutter app using dart Hooks?
my environment details:
=== dart info ===
- Dart 3.11.1 (stable) (Tue Feb 24 00:03:07 2026 -0800) on "macos_arm64"
- on macos / Version 26.3.1 (a) (Build 25D771280a)
- locale is en-US
#### ...
Best practices
3
votes
0
replies
89
views
Flutter: How to implement WhatsApp-like BottomNavigationBar with fill animation on tab selection?
Body:
I am trying to create a BottomNavigationBar similar to the WhatsApp app.
Expected behavior:
Icons are outlined by default
When a tab is selected, the icon becomes filled
The selected tab has ...