asset_pickers 0.1.2 asset_pickers: ^0.1.2 copied to clipboard
Similar to WeChat style of resource selection, support a variety of picture, video combination selection, support compression, preview pictures and video.
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:asset_pickers/asset_pickers.dart';
import 'my_player.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
List assets = [];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('资源选择器'),
),
body: Container(
child: ListView(
children: [
InkWell(
onTap: () async {
List list = await AssetPickers.getAssets();
setState(() {
assets = list;
});
},
child: Container(
color: Color(0xfff1f1f1),
padding: EdgeInsets.all(15),
margin: EdgeInsets.all(10),
child: Text(
'选择图片',
style: TextStyle(color: Colors.lightGreen, fontSize: 16),
),
),
),
InkWell(
onTap: () async {
List list = await AssetPickers.getAssets(
assetType: AssetsType.videoOnly);
setState(() {
assets = list;
});
},
child: Container(
color: Color(0xfff1f1f1),
padding: EdgeInsets.all(15),
margin: EdgeInsets.all(10),
child: Text(
'选择视频',
style: TextStyle(color: Colors.lightGreen, fontSize: 16),
),
),
),
InkWell(
onTap: () async {
List list = await AssetPickers.getAssets(
assetType: AssetsType.imageOrVideo);
setState(() {
assets = list;
});
},
child: Container(
color: Color(0xfff1f1f1),
padding: EdgeInsets.all(15),
margin: EdgeInsets.all(10),
child: Text(
'图片或视频',
style: TextStyle(color: Colors.lightGreen, fontSize: 16),
),
),
),
InkWell(
onTap: () async {
List list = await AssetPickers.getAssets(
assetType: AssetsType.imageAndVideo);
setState(() {
assets = list;
});
},
child: Container(
color: Color(0xfff1f1f1),
padding: EdgeInsets.all(15),
margin: EdgeInsets.all(10),
child: Text(
'图片和视频',
style: TextStyle(color: Colors.lightGreen, fontSize: 16),
),
),
),
InkWell(
child: Container(
color: Color(0xfff4f4f4),
margin: EdgeInsets.all(10),
child: Center(
child: Wrap(children: <Widget>[
for (Map item in assets) _assetWidget(item)
]),
),
),
),
],
),
),
);
}
Widget _assetWidget(Map file) {
String filePath = file['path'];
String type = file['type'];
return Container(
height: 80,
width: 80,
margin: EdgeInsets.all(2),
decoration: BoxDecoration(
color: Colors.lightBlue,
border:
Border.all(color: Colors.blueAccent.withAlpha(60), width: 1.0),
borderRadius: BorderRadius.all(Radius.circular(1))),
child: Container(
child: (type == 'image')
? Image.file(File(filePath))
: MyPlayer(
file: File(filePath),
),
),
);
}
}