How to save to web local storage in flutter web

后端 未结 6 2006
渐次进展
渐次进展 2020-12-30 01:02

I have a web site built with flutter for web and currently, am trying to save to web local storage or cookie but can\'t seem to find any plugin or way to ar

6条回答
  •  无人及你
    2020-12-30 01:29

    With flutter 1.10 we can use universal_html package:

    import 'package:universal_html/prefer_universal/html.dart';
    // ...
    // read preference
    var myPref = window.localStorage['mypref'];
    // ...
    // write preference
    window.localStorage['mypref'] = myPref;
    
    

提交回复
热议问题