Category "dart"

Unable to read a file in local directory with Flutter

I'm creating an app that writes a file into local directory and needs to access it later. One problem: when I try to read the file, the process never ends (and

Avoid `print` calls in production code. (Documentation)

I started seeing this warning in all my print statements. print('Foo'); // Warning: Avoid `print` calls in production code.

In Dart get next occurring date from an rrule

Is there a Dart library or, lacking one, a correct way to handle finding the next date that would be returned from a correctly formatted rrule? For example giv

How to change the textStyle of Stepper in Flutter?

I have a Stepper and I am trying to change the color and textStyle inside the Step (yellow circle) widget (i.e: 1,2,3) from white to black. This is my code: The

is there any way to store data in sqflite and when data connection is available upload the data to online mongodb server

Hey friends I want to know a way in which I can store the app data in offline mode and when the data connection is available then the app sync the data to my on

Null safety migration error: package has unmigrated dependencies. But all my dependencies declare support for null-safety

Im trying to migrate dart null safety but I get the following error when I run dart migrate Bad state: Error: package has unmigrated dependencies. Before migra

Put information in a specific sub-categories, flutter, firebase

I would like to upload informations in my UID doc, but the information is stored in another subcategory. Future postDetailsToFirestore() async { FirebaseFi

Exception thrown in stream callback is not being passed to onError callback

I have some bluetooth connection code in my Flutter app. I have provided an onError callback to the stream.listen() method. The device.connect() call is throwin

Is there a way to auto-format flutter with vscode?

I was wondering if there is a library like Eslint for Flutter/Dart that will automatically insert semicolons and trailing commas when I save the file. FLutter V

What assert do in dart?

I just want to know what's the use of assert in a Dart. I was tried to figure it out by myself but I'm not able to do that. It would be great if someone explain

current route name is null on Flutter

Always getting null when I try to find current page. How do I get current page? print('current page ${ModalRoute.of(context).settings.name}'); my end goal is,

error in implementing search feature in Listview builder

I'm trying to implement search functionality in the list view builder But I don't have an idea to implement it. this is model class class Contacts { String? i

Flutter app show White screen in release app mode?

I am facing very strange issue in flutter app! When test my app in debug mode its working fine while in release mode it shows the white screen. This app is alre

How to conditionally cast a type in dart?

It seems if it's just a variable, I can conditionally cast like this. Animal animal = Dog(); if (animal is Dog) { animal.bark(); // animal is of type Dog her

The parameter can't have a value of 'null' because of its type in Dart

Dart function I have the following Dart function and I am now using null safety: void calculate({int factor}) { // ... } The analyzer complains that: The pa

How do I compare two app versions in flutter?

I was trying to compare two different app version in flutter, But I am not able to assign , App versions in a variable. var a = 1.0.0; var b = 1.0.1; But the v

No MaterialLocalizations found - MyApp widgets require MaterialLocalizations to be provided by a Localizations widget ancestor

I was just trying to create an app with button which shows an alert message when the button is pressed. But it gives me this error(Mentioned below). I wrote

GetX flutter state is not being updated

I am new to flutter. I just started using GetX flutter package. I am working on a ToDo list app. I am having trouble updating the widget state. What I have done

Error: The argument type 'Null Function(DateTime, List<dynamic>)' can't be assigned to the parameter

I am facing the same issue with this Error: The argument type 'Null Function(DateTime, List<dynamic>)' can't be assigned to the pa

How to reverse a Map in dart? Is there any build in function

There is a map. I want to reverse it. is there any inbuilt function for that in dart? {203: 5, 201: 3, 204: 1} This the current Map i have. {204: 1,201: 3:2