lesnitsky / flutter_localstorage

📦 LocalStorage for Flutter
MIT License
301 stars 60 forks source link

When i try to getItem when initState,i always get a null,how do i sovle it #51

Closed huanghui1998hhh closed 3 years ago

huanghui1998hhh commented 3 years ago
@override
void initState() {
    super.initState();
    LocalStorage storage = new LocalStorage('todo_app');
    print(storage.getItem('todos'));
  }
Vakil-Parth commented 3 years ago

@huanghui1998hhh how did you solve this?

lesnitsky commented 3 years ago

@Vakil-Parth make sure to await storage.ready before calling any methods