flutter_curiosity 1.2.2 flutter_curiosity: ^1.2.2 copied to clipboard
The flutter curiosity is compatible with android and ios for multiple native features
import 'package:curiosity/utils.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_waya/flutter_waya.dart';
import 'package:flutter_curiosity/flutter_curiosity.dart';
import 'package:permission_handler/permission_handler.dart';
void main() {
runApp(GlobalMaterial(debugShowCheckedModeBanner: false, title: 'Curiosity', home: App()));
}
class App extends StatefulWidget {
@override
_AppState createState() => _AppState();
}
class _AppState extends State<App> {
bool san = true;
StateSetter textSetState;
List<AssetMedia> list = List();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: Text('Flutter Curiosity Plugin app'),
),
body: Universal(
isScroll: true,
children: <Widget>[
Center(),
StatefulBuilder(
builder: (BuildContext context, StateSetter state) {
textSetState = state;
return Column(mainAxisSize: MainAxisSize.min, children: showText());
},
),
RaisedButton(onPressed: () => getAppInfo(), child: Text('获取appInfo')),
RaisedButton(onPressed: () => scan(context), child: Text('扫码')),
RaisedButton(onPressed: () => select(), child: Text('图片选择')),
RaisedButton(onPressed: () => deleteCacheDirFile(), child: Text('清除图片选择缓存')),
RaisedButton(onPressed: () => shareText(), child: Text('分享文字')),
RaisedButton(onPressed: () => shareImage(), child: Text('分享图片')),
RaisedButton(onPressed: () => shareImages(), child: Text('分享多张图片')),
RaisedButton(onPressed: () => openSystemGallery(), child: Text('打开系统相册')),
RaisedButton(onPressed: () => openSystemCamera(), child: Text('打开系统相机')),
RaisedButton(onPressed: () => getGPS(), child: Text('获取gps状态')),
RaisedButton(onPressed: () => NativeTools.jumpAppSetting(), child: Text('跳转APP设置')),
],
),
);
}
getAppInfo() async {
var data = await AppInfo.getPackageInfo();
// log(data.toJson());
}
openSystemGallery() async {
var data = await GalleryTools.openSystemGallery();
showToast(data.toString());
}
openSystemCamera() async {
var data = await GalleryTools.openSystemCamera();
showToast(data.toString());
}
shareText() {
NativeTools.systemShare(title: '分享图片', content: '分享几个文字', shareType: ShareType.text);
}
shareImage() {
if (list.length == 0) {
showToast('请先选择图片');
return;
}
NativeTools.systemShare(title: '分享图片', content: list[0].path, shareType: ShareType.image);
}
shareImages() {
if (list.length == 0) {
showToast('请先选择图片');
return;
}
List<String> listPath = [];
listPath.add(list[0].path);
listPath.add(list[0].path);
NativeTools.systemShare(title: '分享图片', imagesPath: listPath, shareType: ShareType.images);
}
getGPS() async {
var data = await NativeTools.getGPSStatus();
showToast(data.toString());
}
scan(BuildContext context) async {
var permission = await Utils.requestPermissions(Permission.camera, '相机', showAlert: false) &&
await Utils.requestPermissions(Permission.storage, '手机存储', showAlert: false);
if (permission) {
showCupertinoModalPopup(context: context, builder: (context) => ScannerPage());
} else {
openAppSettings();
}
}
select() async {
PicturePickerOptions options = PicturePickerOptions();
options.pickerSelectType = 1;
options.enableCrop = true;
options.scaleEnabled = true;
options.isGif = true;
options.isCamera = true;
options.hideBottomControls = true;
options.showCropFrame = true;
options.freeStyleCropEnabled = true;
options.originalPhoto = true;
options.maxSelectNum = 4;
list = await GalleryTools.openImagePicker(options);
setState(() {});
}
deleteCacheDirFile() async {
var data = await GalleryTools.deleteCacheDirFile();
showToast(data);
}
List<Widget> showText() {
List<Widget> widget = List();
list.map((value) {
widget.add(Text(value.path + '==' + value.fileName));
}).toList();
return widget;
}
}