26 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
50
views
Flutter: getNextFrame works in app but not in tests (issue compiling custom markers for Google Maps SDK)
I'm building my first Flutter app and I wanted to have some custom markers for the Google Maps SDK (as the default markers aren't great).
I wanted these custom markers to be generated programmatically ...
1
vote
0
answers
56
views
How to serialize a Dart:ui Path?
I am displaying pathes using CustomPainter that come from converted SVGs (and later from user paint)
Because these pathes are to be editable by the users, CustomPainter seems like a good candidate.
...
0
votes
1
answer
1k
views
How do I get my app to request storage permission and access my device's storage? Flutter
I'm making an instagram clone on flutter and i'm trying to access the device's storage so the user can select images to post but the permission in the app settings is greyed out. I'm following a ...
0
votes
1
answer
890
views
How do i blur the bottom navigation bar in flutter?
for hours I've been trying to blur my bottom navigation bar using the BackdropFilter and ImageFilter.blur but to no avail.
in my code, the bottom navigation bar is wrapped in a cliprrect widget and ...
0
votes
1
answer
150
views
Why I can not import dart:ui library? why could not import the Image class from dart ui
end of the code below which _generateMarkeresFromWidget called func. Inside of function ui.Image section doesn't see dart:ui library.
Undefined class 'Image'.
Try changing the name to the name of an ...
0
votes
1
answer
554
views
"Dart library 'dart:ui' is not available on this platform" Error while running an Flutter project
While running the Flutter project, it shows that the Dart library "'dart:ui' is not available on this platform." exists in the Many files. Many times I checked the reinstalling of the ...
0
votes
0
answers
503
views
Convert Image to Uint8List in Flutter without using Dart:ui
I need to convert Image to Uint8List in Flutter without using Dart:ui because this lib crashes while app is in the background,
this code works for dart:ui and I don't want that because my app crashes ...
1
vote
1
answer
538
views
Flutter not able to run
ERROR:D8: Cannot fit requested classes in a single dex file (# methods: 96089 > 65536)
com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives:
The number of method ...
0
votes
1
answer
198
views
Flutter custom stepper
Need help with creating a stepper that increase fractionally like each main step have 3 question and at each question stepper increase by 0.30. after 3rd question one main step is completed.
Please ...
2
votes
1
answer
2k
views
How to add noise filter/effect on Image in flutter?
I want to create a mesh gradient with blur and noise effect. I already added blur effect using ImageFilter but don't know how to add grainy noise on top of it.
1
vote
1
answer
711
views
Flutter - platformViewRegistry creating multiple views and will not display correctly
To process payments in our Flutter web app we are using a form hosted in an IFrame element so the client's browser can connect directly with the payment gateway.
I want to vary the header display in ...
0
votes
3
answers
510
views
Flutter UI Create menu with function after click icon more
Halo,
First, I wanna show you my current UI :
And here's the code for red circle function :
InkWell(
onTap: null,
child: Icon(Icons.more_horiz,
size: 18,
color: Color.fromRGBO(0, 0, 0, 0....
0
votes
1
answer
282
views
FLUTTER UI Selection box (with Container and SetState) selected but nothing happen
Halo,
I have problem with my Selected Container,
it changed on main page when selected, but didn't change when selected in bottomsheet.
here's the video link :
https://youtube.com/shorts/hzPNNQB6Gws?...
1
vote
1
answer
502
views
can`t debug Flutter project in VSCode (: Error: Not found: 'dart:ui')
I'm trying to learn Flutter and I have already set up the environment I'm using Andriod studio emulator and VSCode to run the Flutter file, and I'm using the default flutter project and it runs fine ...
1
vote
3
answers
2k
views
Drawing curved corner borders in Flutter with dart:ui Canvas
I am using the https://pub.dev/packages/ncnn_yolox_flutter package for object detection in my Flutter app. I want the border outline of detections to look similar to the image below; curved corners ...