/* * @author lsy * @date 2019-09-25 **/ import 'package:flutter/services.dart'; const String SAVE_STRING_SHARED = "SAVE_STRING_SHARED"; const String SAVE_INT_SHARED = "SAVE_INT_SHARED"; const String SAVE_FLOAT_SHARED = "SAVE_FLOAT_SHARED"; const String SAVE_BOOLEAN_SHARED = "SAVE_BOOLEAN_SHARED"; const String SAVE_STRINGLIST_SHARED = "SAVE_STRINGLIST_SHARED"; const String GET_STRING_SHARED = "GET_STRING_SHARED"; const String GET_INT_SHARED = "GET_INT_SHARED"; const String GET_FLOAT_SHARED = "GET_FLOAT_SHARED"; const String GET_BOOLEAN_SHARED = "GET_BOOLEAN_SHARED"; const String GET_STRINGLIST_SHARED = "GET_STRINGLIST_SHARED"; const String CLEAR_SHARE = "CLEAR_SHARE"; class SharedPlugin { static Future saveString( String key, String value, MethodChannel channel) async { return await channel .invokeMethod(SAVE_STRING_SHARED, {"key": key, "value": value}); } static Future saveInt( String key, int value, MethodChannel channel) async { return await channel .invokeMethod(SAVE_INT_SHARED, {"key": key, "value": value}); } static Future saveDouble( String key, double value, MethodChannel channel) async { return await channel .invokeMethod(SAVE_FLOAT_SHARED, {"key": key, "value": value}); } static Future saveBoolean( String key, bool value, MethodChannel channel) async { return await channel .invokeMethod(SAVE_BOOLEAN_SHARED, {"key": key, "value": value}); } static Future saveStringList( String key, List value, MethodChannel channel) async { return await channel .invokeMethod(SAVE_STRINGLIST_SHARED, {"key": key, "value": value}); } static Future getString( String key, String value, MethodChannel channel) async { return await channel .invokeMethod(GET_STRING_SHARED, {"key": key, "value": value}); } static Future getInt( String key, int value, MethodChannel channel) async { return await channel .invokeMethod(GET_INT_SHARED, {"key": key, "value": value}); } static Future getDouble( String key, double value, MethodChannel channel) async { return await channel .invokeMethod(GET_FLOAT_SHARED, {"key": key, "value": value}); } static Future getBoolean( String key, bool value, MethodChannel channel) async { return await channel .invokeMethod(GET_BOOLEAN_SHARED, {"key": key, "value": value}); } static Future> getStringList( String key, List value, MethodChannel channel) async { List list = await channel .invokeMethod(GET_STRINGLIST_SHARED, {"key": key, "value": value}); if (list == null) { print("LIST IS NULLL!!!! "); return Future.value(null); } List finalList = []; list.forEach((value) { String temp = value as String; finalList.add(temp); }); return Future.value(finalList); } static Future clear(MethodChannel channel) async { return await channel.invokeMethod(CLEAR_SHARE); } }