LocalData.dart 421 B

12345678910111213141516
  1. import 'package:flutter/material.dart';
  2. import 'package:shared_preferences/shared_preferences.dart';
  3. class LocalData {
  4. static SharedPreferences _sharedPreferences;
  5. static init() async {
  6. if (_sharedPreferences == null) {
  7. _sharedPreferences = await SharedPreferences.getInstance();
  8. debugPrint("init LocalData");
  9. }
  10. }
  11. static SharedPreferences getInstance() {
  12. return _sharedPreferences;
  13. }
  14. }