Getting Started With Flutter | Kodeco, the new raywenderlich.com

Dive into the Flutter framework, which lets you build iOS, Android, web and desktop apps with 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.kodeco.com/24499516-getting-started-with-flutter

Just a note, the GitHub API URL is out of date since the raywenderlich org is deprecated. It should be β€œhttps://api.github.com/orgs/kodecocodes/members” instead

2 Likes

Thanks for a great tutorial, @suragch! I really like how you can give the material to students.

Additionally I want to say that this article is still actual even for Flutter 3.10 with minor update about theming when instead of:

theme: ThemeData(primaryColor: Colors.green.shade800), 

you can use more modern approach:

theme: ThemeData(
    colorSchemeSeed: Colors.green,
    useMaterial3: true,
),
1 Like

I like the new colorSchemeSeed too. It’s a lot easier to deal with than the old way way.

(I haven’t been involved in the article updates as much as I used to be, but whoever updates the article next should see your comment.)

1 Like