shared_preferences | Flutter Package

PHOTO EMBED

Sat Sep 11 2021 03:44:46 GMT+0000 (Coordinated Universal Time)

Saved by @igorrtes #flutter

import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';

void main() {
  runApp(MaterialApp(
    home: Scaffold(
      body: Center(
      child: RaisedButton(
        onPressed: _incrementCounter,
        child: Text('Increment Counter'),
        ),
      ),
    ),
  ));
}

_incrementCounter() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  int counter = (prefs.getInt('counter') ?? 0) + 1;
  print('Pressed $counter times.');
  await prefs.setInt('counter', counter);
}
content_copyCOPY

https://pub.dev/packages/shared_preferences