We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List in flutter is depreciated and I was wondering if anyone had any solutions?
many thanks
The text was updated successfully, but these errors were encountered:
Same with me I resolved it by changing depreciated List declaration with List myCategories = List.empty(growable: true);
and in ListView.builder( shrinkWrap: true, .......)
Sorry, something went wrong.
Same with me I resolved it by changing depreciated List declaration with List myCategories = List.empty(growable: true); and in ListView.builder( shrinkWrap: true, .......)
its working for me
I think I have a solution for this if @theindianappguy assign this to me
@theindianappguy I fixed the deprecated list issue in the project and created a pull request..please have a look into it
ToyZ-95
No branches or pull requests
List in flutter is depreciated and I was wondering if anyone had any solutions?
many thanks
The text was updated successfully, but these errors were encountered: