Skip to main content
Filter by
Sorted by
Tagged with
Advice
1 vote
3 replies
104 views

What is the underscore sign used for in flutter? I have been using and encountering the underscore( _ ) symbol in flutter and dart without actually knowing what it means. Is it a specific syntax that ...
Betty Wilson's user avatar
2 votes
0 answers
64 views

I'm using the app_links package to handle deep links on iOS. Deep links work correctly when the app is: In the foreground In the background However, when the app is completely terminated and ...
harkishan pansuriya's user avatar
Best practices
1 vote
7 replies
136 views

I'm a beginner at Dart and I was doing a DSA problem to find the frequency of numbers in a list. And I have created a map with numbers as keys and frequencies of that number as its value. And then ...
Bharath OS's user avatar
1 vote
1 answer
76 views

I have recently migrated a large Flutter project from flutter_svg to vector_graphics to improve rendering performance. My project contains hundreds (if not thousands) of .svg files. I am using the ...
Sebb's user avatar
  • 244
-1 votes
1 answer
87 views

I'm having warning because I'm using BuildContext with async function. void login(BuildContext context) async { bool success = await controller.login(_passwordController.text); if (success) { ...
Mirza Šabanović's user avatar
0 votes
1 answer
99 views

I have, in main.dart, a statefull widget. That widget has a container that uses a decorated image to have background in the whole screen. I created a global BoxDecoration variable, this way: Future&...
jstuardo's user avatar
  • 4,616
0 votes
1 answer
69 views

I am working on a widget manipulation concept to blend a LinearGradient on text that also has a shadow complementing the gradient's arrangement. The only problem is that I noticed a faint transparent ...
DevQt's user avatar
  • 2,051
Advice
0 votes
1 replies
80 views

I have few nested widgets SingleChildScrollView( child: GestureDetector( child: MouseRegion( child: CustomPainter ))); I am building an application the needs something from ...
xerotolerant's user avatar
  • 2,131
Advice
0 votes
10 replies
272 views

I am trying to recreate a Figma-style progressive blur in Flutter, where the blur fades out smoothly using a vertical gradient mask. I have a scrolling feed/list in the background, and a container ...
MNBLabs's user avatar
  • 116
1 vote
0 answers
91 views

I have created the following class in flutter that uses hid_tool package: import 'dart:async'; import 'package:hid_tool/hid_tool.dart'; class ShiftDispenser { late HidDevice _device; late ...
jstuardo's user avatar
  • 4,616
1 vote
2 answers
129 views

I am following the example code in the API docs of the latest version, 2.1.4, with my async being on version 2.13.1 (also latest as of now). Specifically, I am creating a MultiChannel.VirtualChannel, ...
bliako's user avatar
  • 1,309
0 votes
1 answer
139 views

I want to connect Flutter code (one that appears automatically) to the database PostgreSQL. So I want to get access to PostgreSQL with this package I found on pub.dev. main.dart: import 'package:...
Lev Chekunaev's user avatar
0 votes
0 answers
59 views

I am facing random native crashes on Android when using the jyotish Flutter package (Swiss Ephemeris based). The crash happens even when only initializing the package, without calling any calculation ...
Dhairya Gadani's user avatar
0 votes
0 answers
99 views

I have a parent scrollable page (SingleChildScrollView or CustomScrollView) that contains a fixed-height ListView (400px) as a table. When the user scrolls the ListView to the top and continues ...
MoridAhmad Azizi's user avatar
2 votes
1 answer
153 views

I am refactoring a Flutter class in order to run in a separate (from the UI) Isolate. The class already takes in, during construction, 2 StreamControllers for communicating its status with the caller. ...
bliako's user avatar
  • 1,309

15 30 50 per page
1
2 3 4 5
6387