I need to make a SOAP request to a .NET Webservice (WSDL) with Flutter. This webservice has an basic auth (user, password) and some services with pre-defined e
Is there any way to exclude certain files or directories from pub publish for dart packages? I am publishing a package that has so many screenshots. I want the
I am trying to create an abstract data model where i pass data and type a and then is return list, but when i can't call T.fromJson() method, note that passes t
what I want to do is that my search history can update it, I can´t delete a previous search with click on the delete icon but I want to use the set state
So I'm trying to make a Stack of two buttons using GestureDetector where if I press one, it will overlap the other by half. But it's not detecting any gestures
Hello I am trying add BottomNavigationBar in flutter app but when i run project error occures : A MaterialLocalizations delegate that supports the ka_GE locale
I've already added a few dart files with Firebase integration and fixed deprications, but unfortunately it shows a white blank screen when I run my flutter app
You must have seen inside a analysis_options.yaml: analyzer: exclude: [build] strong-mode: implicit-casts: false linter: rules: - camel_case_type
I have a very large project in flutter which is connected with back4app i did some little changes last, it was working good today am trying to open my project i
I'm trying to create a "copyWith" method for my class, and it works with most scenarios. The problem is when I try to set a nullable property to null, because m
I am trying to create a plugin for Flutter in Java. I am trying to pass the Android activity parameter in my main Java class. This is my native code: package
In my flutter app I am checking if a document exists based on certain parameters and based on snapshot.hasData build the widget. However I remember reading som
I'm trying to create a system in which I can validate a string to check if it's a url or not. (https://www.google.com/) I found the flutter package validator b
I have a function that might take a few seconds to execute, and it is synchronous. Does: String slowFunction() { ... } ... Future<String>(() => slowFu
I've followed a tutorial regarding 'Flutter Firebase Authentication. I faced many issues due to it being in an old version of firebase, but I migrated and fixed
When I run flutter change channel or flutter doctor, the CMD show me this: C:\Users\MyUser>flutter doctor -v Checking Dart SDK version... Building flutter
I used ShowTimePicker class to select time according to my wish but want to show it in PM or AM with Text .like 9:00 AM, 10:00 PM. means take 12 hours format.
Actually I published a app in play store, in the next update I want to add UPI payments in the app. So, I am using upi_pay package. When I installing the packag
I'm trying to add RefreshIndicator to CustomScrollView. Is it possible to do? Here is the code sample: CustomScrollView( slivers: <Widget>[ SliverAp
How generate specific widget dynamically inside ListView.Builder? I have my data coming from StreamBuilder, this data coming in numbers [1...24] sometimes comin