Build a Flutter Wishlist App, Part 1: Introducing Flutter and Building a Basic Wishlist App

Learn the Flutter development kit basics and the Dart programming language and build an app to manage your shopping wishlist.
Read more…

Brought for you by one of our Guest Authors: Michael Bui

1 Like

Mobile devs! Let us know if you have any questions in the comments below!

1 Like

The argument type ‘Object’ can’t be assigned to the parameter type 'Map<String, dynamic

on line 17 i’m getting an error. on landing_page.dart

Thanks for reporting that! Let me relay it to our content team to see what they can advise on that front.

I’m not sure what version of Flutter and Dart, you’re running but you may need to have slightly different code depending on which version you use along with the dependencies you’re pulling. For example, when I migrated the app to null safety and updated the dependencies along with it, line 16 needed to be List<dynamic>. You may need to fiddle with the code a bit until it’s right for your environment

1 Like

Thanks for sharing that with the rest of community!