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