Saving Data in Flutter

Jan 31 2024 · Dart 3, Flutter 3.10, Visual Studio Code

Part 2: Use SharedPreferences & Secure Storage

06. Connect the User Interface to the Data (Part 1)

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 05. Perform CRUD Tasks with SharedPreferences Next episode: 07. Connect the User Interface to the Data (Part 2)

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

In the lib folder of our project, let’s add a new file, called settings_screen.dart.

String _listName = ''; 
int _calories = 0; 
bool _showFileSize = false; 
final double fontSize = 22.0;
final _listNameController = TextEditingController(); 
final _caloriesController = TextEditingController(); 
@override 
  void initState() { 
    super.initState(); 
    _loadSettings(); 
  } 
@override 
void dispose() { 
    _listNameController.dispose(); 
    _caloriesController.dispose(); 
    super.dispose(); 
  }