คุณสามารถใช้Localstorage
1-เพิ่มการอ้างอิงถึงpubspec.yaml
( เปลี่ยนรุ่นตามล่าสุด )
dependencies:
...
localstorage: ^3.0.0
2-จากนั้นเรียกใช้คำสั่งต่อไปนี้
flutter packages get
3- นำเข้าที่เก็บข้อมูลในเครื่อง:
import 'package:localstorage/localstorage.dart';
4-สร้างอินสแตนซ์
class MainApp extends StatelessWidget {
final LocalStorage storage = new LocalStorage('localstorage_app');
...
}
เพิ่มรายการใน lcoalstorage:
void addItemsToLocalStorage() {
storage.setItem('name', 'Abolfazl');
storage.setItem('family', 'Roshanzamir');
final info = json.encode({'name': 'Darush', 'family': 'Roshanzami'});
storage.setItem('info', info);
}
รับรายการจาก lcoalstorage นี้:
void getitemFromLocalStorage() {
final name = storage.getItem('name');
final family = storage.getItem('family');
Map<String, dynamic> info = json.decode(storage.getItem('info'));
final info_name=info['name'];
final info_family=info['family'];
}
ลบรายการจากที่เก็บข้อมูลในเครื่อง:
void removeItemFromLocalStorage() {
storage.deleteItem('name');
storage.deleteItem('family');
storage.deleteItem('info');
}