Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
1 replies
52 views

I am trying to build an OCR feature in my Flutter app that can read hotel bills in multiple formats. The challenge is that these bills do not follow a fixed layout. From each bill, I need to extract ...
Manish sahu's user avatar
-1 votes
0 answers
42 views

Location retrieving doesn't work without internet or cellular data on adroid. when I get the location once or if I had the wifi and location turned on together then turned off wifi it works, but if ...
CHEAN LYHOR's user avatar
0 votes
0 answers
36 views

I'm building a custom map page in Flutter using `google_maps_flutter` (and a wrapper widget from `google_maps_drawing_tools`). I'm fighting a layout issue where the **camera target is not visually ...
DevMobile TC's user avatar
2 votes
3 answers
268 views

I’m trying to implement Google Sign-In in my Flutter app using google_sign_in: ^7.2.0 and Firebase Authentication, but I keep hitting the following error after selecting a Google account: ...
Axel Bergvall's user avatar
-3 votes
1 answer
87 views

I made a flutter project using Android Studio, but had to shift to using VS Code. When I tried running the build using VS Code, it started giving a configuration error (assembleDebug): The error was ...
droplet's user avatar
  • 61
2 votes
0 answers
102 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
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
2 votes
0 answers
61 views

I’m getting random barcode values when the scanner view closes due to timeout even though no QR code or barcode in front of the camera. Each time this happens, the detected values are different. Code :...
Akhil George's user avatar
  • 1,003
0 votes
1 answer
92 views

I'm building a website using Flutter Web, but when I scroll using the mouse scroll wheel, it doesn’t feel smooth it’s kind of laggy or jumpy compared to websites built with React or standard HTML/CSS. ...
OM BELEKAR's user avatar
0 votes
0 answers
170 views

I'm on a MacBook Air 2025 M4 (Apple Silicon) using Flutter 3.35.5 on channel stable, Xcode 26.0.1, and CocoaPods 1.16.2. Actual Setup: Component Version macOS 15.0 Sequoia CPU Apple M4 (ARM64) Flutter ...
Maximilian Grinik's user avatar
0 votes
0 answers
56 views

Configure project :gradle WARNING: Unsupported Kotlin plugin version. The embedded-kotlin and kotlin-dsl plugins rely on features of Kotlin 1.8.10 that might work differently than in the requested ...
BSF-68 Muhammad Zakariyya Usma's user avatar
0 votes
0 answers
64 views

I am using this package Flutter_pos_printer_platform_image_3 where it has predefined toast messages those are generally not a problem but right now what I am doing is periodically scanning and ...
The unknown entity's user avatar
0 votes
0 answers
37 views

I'm currently working on a Flutter project using: Flutter SDK: v3.35.1 shared_preferences package: v2.5.3 Kotlin version: 2.2.0 (in the Android project) When I try to run the command: flutter build ...
product-nextstep17's user avatar
0 votes
0 answers
142 views

I recently upgraded my Flutter SDK from 3.32.7 → 3.35.0. Since then, my app works fine in debug mode, but crashes on launch in release mode with the following stacktrace: FATAL EXCEPTION: main E/...
Shashank Jain's user avatar
2 votes
2 answers
140 views

Does anyone know the correct implementation of the flutter_app_icon_changer: ^0.1.1 library? and also what to place in the appIcons? What is the correct format of it? Does Anyone know the correct way ...
Vipin Kumar's user avatar
0 votes
0 answers
35 views

I am building a Flutter app where I have to execute three separate TensorFlow Lite models on-device: An embedding model An action video detection model A DistilGPT2 RAG model Currently, I bundle all ...
Nidhi Singh's user avatar
1 vote
1 answer
179 views

I want to achieve this animation and accurate shadows to the button : - the Tricky part would be getting shadow of the circular button , I tried using both foreground , and decoration property of ...
Ramji's user avatar
  • 60
0 votes
0 answers
57 views

After I added assets_audio_player package I started to get this error : FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':assets_audio_player:compileDebugKotlin'. ...
Tugba Ozkan's user avatar
4 votes
0 answers
184 views

Whenever I tap on the notification that I receive , there is a black flash or a collapsing effect , I have tested on real device and on release mode , the bug that I want to fix: - This is my xml : - ...
Ramji's user avatar
  • 60
2 votes
1 answer
131 views

In some apps (e.g., BlinkIt, Swiggy, etc.), the search field shows animated suggestions instead of a static placeholder. For example, the hint text rotates/animates between: “Search fruits” “Search ...
Deekshith Xetty's user avatar
-1 votes
1 answer
133 views

I'm brand new to Flutter and I'm having trouble getting my application to run. This is what I get: warning: [options] source value 8 is obsolete and will be removed in a future release warning: [...
runnerpaul's user avatar
  • 7,564
0 votes
2 answers
73 views

I am trying to fetch one User (row) from users table in SQLite in Flutter. I am using sqflite package for that. But, the fetchedUser Map is empty as a result of query and I am getting errors: ...
DayGZax's user avatar
  • 40
2 votes
0 answers
120 views

I'm developing a Flutter SDK that I want to distribute to integrators without exposing my source code. I've seen packages like zolozkit_for_flutter on pub.dev that don't show their source code (GitHub ...
IamVariable's user avatar
6 votes
3 answers
615 views

I am using flutter_native_splash in my Flutter project. The splash screen works perfectly on Android 11 and below, but on Real Android 12 devices and above, the logo does not appear on the first app ...
Ramji's user avatar
  • 60
-2 votes
1 answer
132 views

Questions: I did try with window_manager either it is producing something that far from the result or something buggy . How can I make the window borderless and floating? Is it possible to create ...
FarHard112's user avatar
2 votes
0 answers
81 views

do you have same problem about this one. so i has been updated my google sign in package to 7.1.1 in my project. but i have problem the hostedDomain that already registered in initialize google sign ...
Luqmanul Hakiem's user avatar
0 votes
1 answer
62 views

I have a Flutter project that previously used the flutter_adaptive_cards package to render Microsoft Adaptive Cards. The old code looked something like this: final AdaptiveCard adaptiveCard = ...
Rajitha Perera's user avatar
0 votes
0 answers
83 views

I'm developing a Flutter app that continuously reads NFC tags for attendance using the flutter_nfc_kit package. The reading loop works fine on Android and mostly fine on iOS, but on iOS devices I ...
Akhil George's user avatar
  • 1,003
0 votes
1 answer
103 views

I’m using Flutter with flutter_background_service and geolocator to get location updates in the background. In debug mode, background location works fine even when the app is minimized or the screen ...
Akhil George's user avatar
  • 1,003
1 vote
1 answer
71 views

I want to analyze my Flutter app size for iOS and find out: Which pub.dev plugins are taking how much space. How much space my assets contribute. The size from my own Dart code (lib/) and native ios/ ...
Snehil Tejani's user avatar
0 votes
1 answer
62 views

I am trying to create a flutter_typeahead field with its suggestions field needs to be wider than the text field. I tried using constraints property but it doesn't increase the width but does limit ...
maxplanck's user avatar
1 vote
2 answers
88 views

I’m trying to create a top bar using a Container with a horizontal LinearGradient background and a Row of widgets inside it. However, even though I’m using Alignment.centerLeft to Alignment....
Karthick Raja's user avatar
0 votes
1 answer
83 views

I have three cards positioned 10 pixels from the bottom-left corner within a Stack as follows: Positioned( bottom: 10, left: 10, child: Card( elevation: 0, color: Colors.white, child:...
Gery's user avatar
  • 9,255
1 vote
3 answers
116 views

I am trying to play a 30 sec video , but it is not working as expected. _controller = VideoPlayerController.asset( 'assets/videos/disclaimer.mp4',); All the errors we have been troubleshooting are for ...
Abhilash Anand's user avatar
0 votes
0 answers
33 views

Did anyone else have this issue? the patrol test is not clicking "Save to Files" in the share sheet, it's stuck even before getting to that step await $('Open Certificate').tap(...
Aymen Ziouche's user avatar
0 votes
0 answers
55 views

I'm using the video_player package in Flutter to stream videos from a server with standard playback controls (play, pause, seekTo, etc.). When using the sample video URL provided in the package ...
Rozan Shrestha's user avatar
0 votes
0 answers
43 views

In Flutter excel: 4.0.6 if i am deleting the default sheet1 then next sheets rows not coming properly. I am creating a excel in which i am creating a yearly sheet and months sheet (multiple sheets) of ...
Ajinkya kadam's user avatar
0 votes
2 answers
297 views

when running flutter pub get command, this ios the ourput: Resolving dependencies... (1.1s) Downloading packages... characters 1.4.0 (1.4.1 available) leak_tracker 10.0.9 (11.0.1 available) ...
jstuardo's user avatar
  • 4,497
0 votes
0 answers
57 views

I have configured the video resolution to 2K, and it’s working as expected with LiveKit. However, the video playback is not smooth — it’s stuttering and getting stuck, especially on devices running ...
Alpit Panchal's user avatar
0 votes
1 answer
79 views

Listen carefully and pay attentions on my problem. The initial name of my app is wallpaper and i want to change it to the PixelScape. i have try all the possible methods to change the name but still ...
Zain Ali's user avatar
0 votes
0 answers
35 views

I am new to Flutter and BLE on Android. What I am trying to achieve is to both scan and advertise form a service. While it works from the main isolate, even await FlutterBlePeripheral().hasPermission()...
ZorgoZ's user avatar
  • 3,758
3 votes
2 answers
182 views

I'm working on a Flutter app and trying to replicate a Figma design for a container with an angular (conic) gradient border. Despite multiple attempts, I can't achieve the exact look specified in the ...
Syed Rehan's user avatar
  • 1,339
0 votes
0 answers
29 views

I'm building a video recording app in Flutter using the CameraAwesome plugin. However, whenever I slide down the notification shade or go to another app, it auto-stops the recording. When I try to ...
ryannmahajan's user avatar
1 vote
0 answers
104 views

I'm developing a Flutter music app and using hive for local storage, which requires hive_generator and build_runner for code generation. I'm encountering a very persistent issue where build_runner ...
MAGIC GAMER's user avatar
0 votes
1 answer
26 views

my code -> import 'package:app_usage/app_usage.dart'; class ScreenTimeService { Future<List<AppUsageInfo>> getUsageStats() async { try { DateTime endDate = DateTime.now(...
Atharva's user avatar
0 votes
0 answers
29 views

I have implement the WebRTC in my flutter project and it's working completely but only issue is when user can rejoin the existing broadcasting so getting blank screen. Here is the my code: enter link ...
Alpit Panchal's user avatar
0 votes
0 answers
68 views

I want to run dart code in background as well as when app is killed. I am making app related to when user is outside of radius (double value), I will call API using Dio. I had tried some packages to ...
Mehran Hamza's user avatar
1 vote
0 answers
252 views

I am at latest flutter 3.32.4 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':ffmpeg_kit_flutter:compileDebugJavaWithJavac'. > Could not resolve all files ...
Tarun Hasija's user avatar
0 votes
1 answer
137 views

So, i will be providing the code for the entire file below, i just need some advice as to why the waveforms are not contained inside the widget, they are going outside the box which is not what i ...
cruxi5's user avatar
  • 1
0 votes
0 answers
34 views

I am using the phone_number_field package in a project, which is utilizing flag SVGs from the circle_flags package. Based on the documentation and example of circle_flags, it has a preload function ...
Muhammad Taimoor's user avatar

1
2 3 4 5
140