Write your first Flutter app, part 1 Docs Get started Write your first app This is a guide to creating your first Flutter app. If you are familiar with object-oriented code and basic programming concepts such as variables, loops, and conditionals, you can complete this tutorial. You don’t need previous experience with Dart or mobile programming. This guide is part 1 of a two-part codelab. You can find part 2 on Google Developers . Part 1 can also be found on Google Developers . What you’ll build in part 1 You’ll implement a simple mobile app that generates proposed names for a startup company. The user can select and unselect names, saving the best ones. The code lazily generates names. As the user scrolls, more names are generated. There is no limit to how far a user can scroll. The animated GIF shows how the app works at the completion of part 1. What you’ll learn in part 1 How to write a Flutter app that looks natural on both...
Comments