/getx_todo_app_tutorial

Source code of the To Do List app created using Flutter and GetX.

Primary LanguageDart

Flutter GetX To-Do App

This is a simple To-Do List app created during a brief introductory tutorial about Flutter and GetX.

With this project you will learn how to:

  1. Create and set up a Flutter project environment to work with Get package;
  2. Draw two screens using Flutter standard widgets;
  3. Navigate between screens using Get navigation features;
  4. Manage the state of the application using the simplicity of the GetXController;
  5. Make the UI reactive in a very efficient way, rebuilding only the necessary widgets and not the entire screen;
  6. Create and manage snackbars with just one line of code with Get built-in functions;
  7. Implement a undo function triggered by a button inside the snackbar;
  8. Use a GetX worker to listen to state changes;
  9. Store the to-do list inside non-volatile memory, keeping the data available even if the app is closed.