Flutter: Shared Preferences null on Startup

前端 未结 6 1082
刺人心
刺人心 2021-01-11 12:28

Problem: Shared preference bool value is null on startup even though I have given it a value if prefs.getBool(\'myBool\') returns null

6条回答
  •  Happy的楠姐
    2021-01-11 13:22

    Add condition ?? when you get value from preference.

    int intValue = prefs.getInt('intValue') ?? 0;
    

提交回复
热议问题