Saving Data in Flutter

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

Part 2: Use SharedPreferences & Secure Storage

07. Connect the User Interface to the Data (Part 2)

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: 06. Connect the User Interface to the Data (Part 1) Next episode: 08. Challenge: Add a Field

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’re accessing parts of this content for free, with some sections shown as obfuscated text.

Heads up... You’re accessing parts of this content for free, with some sections shown as obfuscated text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

OK, we are now ready to build the user interface for the settings screen.

Padding( 
  padding: const EdgeInsets.all(8.0), 
  child: TextField( 
    controller: _listNameController, 
    decoration: InputDecoration( 
        labelText: 'List Name', 
        labelStyle: TextStyle(fontSize: fontSize)), 
    onChanged: (value) { 
      setState(() { 
        _listName = value; 
      }); 
    }, 
  ), 
),
child: TextField( 
  controller: _caloriesController, 
  keyboardType: TextInputType.number, 
  decoration: InputDecoration( 
      labelText: 'Maximum Daily Calories', 
      labelStyle: TextStyle(fontSize: fontSize)), 
  onChanged: (value) { 
    setState(() { 
      _calories = int.tryParse(value) ?? 0; 
    }); 
  }, 
), 
SwitchListTile( 
    title: Text('Show File Size', style: TextStyle(fontSize: fontSize)), 
    value: _showFileSize, 
    onChanged: (bool value) { 
      setState(() { 
        _showFileSize = value; 
      }); 
    }, 
  ), 
final prefs = await SPHelper.getInstance(); 
await prefs.setListName(_listNameController.text); 
await prefs.setCalories(int.tryParse(_caloriesController.text) ?? 0); 
await prefs.setShowFileSize(_showFileSize); 
ScaffoldMessenger.of(context).showSnackBar( 
      const SnackBar(content: Text('Settings saved!')), 
    );