Followed this tutorial. Index is given in the itemBuilder, as itemBuilder is automatically called as many times as it takes to fill its available space (and therefore iterates through the indices of the list). Then passed from there to _buildTodoItem, and built into that item’s _promptRemoveTodoItem call. Flutter Core Principles for reference. The tutorial aboveContinue reading “Making a To-do List App”
Monthly Archives: December 2019
My First Flutter App
Followed Part 1 and Part 2 of the Flutter tutorial. Hot reload happens automatically when saving the app files (but there’s also a button in the IDE to do it). If you make big changes, do a full restart instead of a hot restart. Scaffold: make a layout without needing to align things manually. UseContinue reading “My First Flutter App”
Installing Flutter
Installing Flutter on Mac zsh: add flutter to $PATH open a terminal in $HOME and run: touch .zshrc open .zshrc Add the following line and change [PATH_TO_FLUTTER_GIT_DIRECTORY] to be the path where you cloned Flutter’s git repo: Platform Setup: iOS install Xcode (on app store) install Java and JDK Android install android studio and goContinue reading “Installing Flutter”
The Boring Show (Flutter)
Developing an app from start to finish.