WallPaper_FSX_Flutter/lib/common/utils/wallpaper_manage.dart
fengshengxiong 9caadfb09a 1.按照UI图修改
2.完善其他功能
2024-05-17 17:02:22 +08:00

16 lines
440 B
Dart

// Author: fengshengxiong
// Date: 2024/5/11
// Description: 设置锁屏/首页壁纸
import 'package:now_wallpaper/common/components/easy_loading.dart';
import 'package:now_wallpaper/common/plugin/set_wallpaper.dart';
class WallpaperManage {
static Future setWallpaper(String imgPath, int location) async {
loading();
String result = await SetWallpaper.setWallpaper(imgPath, location);
dismiss();
toast(result);
}
}