Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

Title: Flutter menu button internal buttons are not clickable Content: I am creating a small menu for deleting/editing comments or posts in Flutter. When I press an IconButton, a menu appears using ...
choi's user avatar
  • 11
0 votes
1 answer
16 views

I am getting this error on flutter clean cammand. Failed to remove D:\Projects\FlutterProject\.dart_tool. A program may still be using a file in the directory or the directory itself. To find and ...
Clipboard's user avatar
  • 378
0 votes
1 answer
30 views

I’m building a Flutter app and looking for a clean way to manage state without a lot of boilerplate code. I’ve tried using setState, but the widget rebuilds become messy as the project grows. I also ...
ravikinha jaat's user avatar
0 votes
0 answers
34 views

enter image description here I'm using the animated_custom_dropdown library version 3.1.1. I've run into this problem: By default, CustomDropdown comes with a transparent padding or border on the left ...
Franklin's user avatar
Tooling
1 vote
1 replies
40 views

I’m setting up integration tests in a Flutter project and noticed an inconsistency between the official documentation and the current state of the packages. The official Flutter documentation still ...
Anderson André's user avatar
-2 votes
0 answers
52 views

Hub connection is getting disconnected , its working in local , but when deployed to cloud its not working , but there is no issue from server end because the same thing i working fine in Web ...
Kuber S's user avatar
  • 11
Best practices
0 votes
0 replies
39 views

I am using the showcaseview package in Flutter to highlight sections of a long scrollable page. The problem is: When a widget is highlighted, ShowCaseView automatically scrolls it only to the middle ...
Daniel Okoro's user avatar
2 votes
0 answers
54 views

A dio.get() call that takes only 150 ms with curl blocks for 6–8 seconds on the client side. The pause happens before Dio prints the first REQUEST log line, so the delay is not caused by DNS, TLS, or ...
Wassim Ben Mechlia's user avatar
Best practices
1 vote
2 replies
63 views

I’m using RadioGroup and a custom radio button widget. Right now, I’m forced to pass groupValue and onChanged twice — once to RadioGroup and again to my _buildRadioButton widget. RadioGroup<bool>...
sansalgo's user avatar
  • 103
0 votes
0 answers
50 views

TLDR: how to fitWidth on an image inside an InteractiveViewer I am using an InteractiveViewer in my flutter app to display a photo of the page of a book. Previously, I was just using a ...
Rea Mart's user avatar
  • 101
0 votes
0 answers
55 views

When scrolling down the page, the top part of the SliverPersistentHeader widget (topPanel) is hiding, and when scrolling up, it is shown (NestedScrollView.floatHeaderSlivers = true). The topPanel ...
Yuri's user avatar
  • 11
Tooling
0 votes
2 replies
45 views

[making smaller and bigger the containerI tried to find this but didn't get any solution that how to min size or max size the container widget like this only when pressed on the button using a button ...
Tanu Purohit's user avatar
0 votes
0 answers
34 views

I’m building an end-to-end encrypted chat app using Flutter. When a Firebase push notification arrives, my background message handler (_firebaseMessagingBackgroundHandler) connects to my WebSocket ...
Ahmad Darawsheh's user avatar
0 votes
0 answers
51 views

I have two pill-style containers inside a Row, and each container shows text. I want each container to use only as much width as its text needs, and when the window becomes tight, both sides should ...
G4lan's user avatar
  • 43
Advice
0 votes
3 replies
89 views

I have a string in Flutter that represents a color. The string can be: A hexadecimal color code like #FFFFFF or #000000 A named color like "white", "black", "red" I ...
Gowtham's user avatar
  • 51
0 votes
0 answers
57 views

Goal I need a clear, step-by-step process I can follow to make the app + dependencies compatible with that 16 KB page-size constraint without upgrading Flutter SDK. I am looking for concrete actions I ...
Web Dev's user avatar
0 votes
2 answers
96 views

Perhaps it is a flaw of my design but as it is, I am showing a flutter_map inside a Dialog, using showDialog(...){...}. On that map I have several markers which when clicked a Card with some text pops ...
bliako's user avatar
  • 1,221
1 vote
1 answer
54 views

On my flutter_map I have an IconButton which it should cause a SearchBar to appear only when clicked. When search is done, the SearchBar can go into hiding again and only said icon be visible. I have ...
bliako's user avatar
  • 1,221
0 votes
0 answers
75 views

I'm building a Flutter app that uses Android TV Remote Protocol v2. The app requires client certificates for authentication. When I use a manually created certificate (placed in assets), everything ...
shakti goyal's user avatar
0 votes
0 answers
55 views

How do you pass the flags to the final exe like -D_DEBUG, /SUBSYSTEM:WINDOWS, -DCMAKE and so on to the final exe thats built when using dart's newest build hooks, native assets interop method? ...
mln4574's user avatar
1 vote
1 answer
89 views

I'm using the latest version of google_maps_flutter, and I noticed that this code is now showing a deprecation warning: if (_mapStyle != null) { mapController.setMapStyle(_mapStyle); } I used this ...
Benitto's user avatar
  • 21
1 vote
2 answers
79 views

I've been trying to solve this problem for a couple of days now, but to no avail. I have a simple app with three tabs: Deliveries Page: Has a DropdownMenuFormField (basically just a DropdownMenu with ...
Antonio S.'s user avatar
0 votes
1 answer
34 views

So im trying to populate custom values into flutter intl phone field IntlPhoneField( readOnly: config.isReadonly, focusNode: focusNode, initialCountryCode: '...
Febin Johnson's user avatar
0 votes
1 answer
132 views

I’m facing a persistent issue when running my Flutter iOS app on a physical iPhone and iOS simulator (iOS 26.1). I am using the latest Flutter and Dart versions and my project is integrated with ...
Thiru .N's user avatar
Best practices
0 votes
1 replies
44 views

I need help understanding: How to configure Stripe in Flutter for multiple payment methods. How to enable MB Way in Stripe and trigger it from the Flutter app. How to set up Apple Pay and Google ...
Nitish Kumar's user avatar
1 vote
2 answers
89 views

I'm making a simple 'To Do List' app In Flutter, When I press the 'floatingActionButton' it's supposed to to show a pop-up where the user can input a new task, But nothing is displayed when the button ...
buzzbuzz20xx's user avatar
1 vote
0 answers
127 views

if you're getting an issue like this: $ flutter build windows CMake Error at CMakeLists.txt:3 (project): Generator Visual Studio 16 2019 could not find any instance of Visual Studio. Unable to ...
rando's user avatar
  • 11
1 vote
0 answers
38 views

How to handle notification payload. My app is that when killing the app, you always have to log in again. When receiving notification -> click on notification -> route to logIn screen -> ...
LamVu's user avatar
  • 1
0 votes
0 answers
51 views

I've got an immutable class in Dart. There's an expensive method on the class which relies on that immutable data, and I'd like to calculate that the first time the method is called and store the ...
Chris B.'s user avatar
  • 91.2k
0 votes
1 answer
56 views

I've got the dart formatter running on my code, and for some reason it insists on the following formatting: String get display => switch (type) { ListType.star => 'Starred', ...
Chris B.'s user avatar
  • 91.2k
Advice
0 votes
2 replies
70 views

I'm trying to write a settings page, and the layout I want is a grid with interspersed titles, something like this: That's easy enough to accomplish, except I want the first column to adjust to the ...
Chris B.'s user avatar
  • 91.2k
0 votes
3 answers
81 views

I was learning postgres with flutter, and my app kept crashing when I tried to connect to the database. The database is a postgres db running on a docker container. Here is the Dockerfile FROM ...
lifeashansen's user avatar
0 votes
0 answers
44 views

I'm making a mobile app using flutter. My collections and dto have all been defined and it runs perfectly when I'm building it using dart run build_runner build --delete-conflicting-outputs. I know it ...
Maxime Wégimont's user avatar
1 vote
0 answers
113 views

I’m building a Flutter app where the user can take pictures of objects, but I want the capture button to be enabled only when the camera is at a specific distance from the object. I am using the ...
Wanda Maximoff's user avatar
0 votes
2 answers
65 views

In my project, I am using a vertical ReorderableListView with items that all have the same width. Despite the items having the same width and providing one item as a prototype item, the ...
user31112632's user avatar
2 votes
0 answers
103 views

Unhandled Exception: Cannot use the Ref of noteControllerProvider after it has been disposed. This typically happens if: A provider rebuilt, but the previous "build" was still pending and ...
Sinnoor C's user avatar
0 votes
0 answers
118 views

Previously I have used go router for Flutter Web. That time my flutter version was 3.10.6 and the go router version of 6.4.0. In that time The project was configured in such a way so that in URL bar ...
Arnab Ghosh's user avatar
3 votes
1 answer
167 views

I'm using the Flutter package pro_image_editor: ^11.12.1 for image editing in my app. The editor works fine for the first edit. However, I’m having trouble re-editing an image after it’s been saved ...
Raj A's user avatar
  • 561
1 vote
1 answer
84 views

What happened? App does not start properly (MissingPluginException(No implementation found for method OneSignal#initialize on channel OneSignal) because of OneSignal package issue which is ONLY ...
SwiftiSwift's user avatar
  • 8,988
-1 votes
0 answers
131 views

Does the Dart language server support code completion for switch statement? I am asking about the Dart extension for VS Code. In the switch statement, I want to get a suggestion (autocompletion) for ...
mezoni's user avatar
  • 11.3k
0 votes
1 answer
54 views

I am builing app on flutter with Firebase auth that blocks deleted accounts from loggin in. of course it should not let the deleted account sign in but it keeps showing me error that crashes app with ...
acidcoder's user avatar
2 votes
3 answers
134 views

I am trying to get several details from the collection "users" (eg, name, surname, nickname) stored in Firestore with the function getUserData() to pass them to other classes through the ...
Gery's user avatar
  • 9,255
0 votes
2 answers
98 views

I just added shared preferences to my flutter project as a storage for login and registering and etc. when i want to build the app, it gives me this error: * What went wrong: Execution failed for task ...
Armin youuu's user avatar
0 votes
2 answers
94 views

I've put in a github issue but just wanted to check with the community that this sounds right to everyone else. Logically when creating and "ad" and an "adwidget" in flutter they ...
Jesse Hayward's user avatar
1 vote
1 answer
100 views

I am currently encountering a problem where my google_sign_in button rendered from the Web is twitching as shown here: GIF: GOOGLE SIGN IN WIDGET TWITCHING I have followed the example given from the ...
Cubelated's user avatar
2 votes
1 answer
44 views

I am struggling to send streamed response to the connected client. The code below is the example HttpServer used to respond to the client, the client code is also mentioned using a custom class to ...
Sameer Ahmed's user avatar
0 votes
1 answer
52 views

The following code is a simplification of the code that I have and may not disclose: class Logger { var _loggingStarted = false; void startLogging() { if (!_loggingStarted) { ...
user31112632's user avatar
0 votes
1 answer
79 views

I'm facing an issue after building my Flutter app (especially in release mode). The app crashes or throws the following errors related to SharedPreferences and FlutterToast plugins. I/flutter (10569): ...
Usama Qadeer's user avatar
1 vote
1 answer
91 views

I have a Flutter project and I added some images inside: assets/images/ I also added the folder in pubspec.yaml: flutter: assets: - assets/images/ The images load correctly the first time when ...
Moaz Yahya's user avatar
3 votes
1 answer
56 views

I have a mobile app (Flutter) where I'm allowing the user to backup their data to their personal OneDrive, so if they lose their device they can restore data from their OneDrive. I'm using a delegated ...
James Allen's user avatar
  • 7,317

1
2 3 4 5
1918