static Future setInt(String key, int v) async { SharedPreferences prefs = await SharedPreferences.getInstance(); await prefs.setInt(key, v); // var box = Hive.box('myBox'); // box.put(key, v ); }