Getting Started with Flutter | raywenderlich.com

Dive into the Flutter framework for building iOS and Android apps in a single codebase, by writing a cross-platform app using VS Code.


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/4529993-getting-started-with-flutter

Super happy to see Flutter tutorials here on raywenderlich.com!

2 Likes

@spgms Really glad you like them! :]

1 Like

Great Tutorial. Got my first app loaded on both devices and working as advertised. Thanks!

2 Likes

@scriptkrewe Really glad you like it! Cheers! :]

Great Tutorials.
Short and Sweet

1 Like

In case someone else did wonder how to use List.map in Dart:

setState(() {
  _members = json.decode(response.body)
    .map<Member>((memberJSON) => 
      Member(memberJSON["login"], memberJSON["avatar_url"])
    ).toList();
});

Very interesting tutorial. Thank you.

1 Like

@sushiljic Glad you like it! Cheers! :]

@sean_antfarm Thank you for sharing your solution - much appreciated! :]

@saint4eva Really glad you like it! Cheers! :]

This tutorial is more than six months old so questions are no longer supported at the moment for it. Thank you!