nine_grid_view
1.0.0
语言: 英语 | 中文简体
类似微博动态、微信朋友圈,九个网格视图控件来显示图片。支持单张大图预览。
还支持微信群、钉钉群、QQ群头像效果。
类似微博/微信发布动态图片选择九格视图。支持按键放大效果、拖拽排序、拖拽到指定位置删除。
dependencies :
nine_grid_view : ^2.0.0
import 'package:nine_grid_view/nine_grid_view.dart';
// bigImage param, It is recommended to use a medium-quality picture, because the original picture is too large and takes time to load.
NineGridView(
margin : EdgeInsets.all(12),
padding : EdgeInsets.all(5),
space : 5,
type : NineGridType.weChat,//NineGridType.weChat, NineGridType.weiBo
itemCount : itemCount,
itemBuilder : (BuildContext context, int index) {},
);
// group avatar.
// need width, height param.
NineGridView(
width : 120,
height : 120,
padding : EdgeInsets.all(5),
space : 5,
type : NineGridType.qqGp, //NineGridType.weChatGp, NineGridType.dingTalkGp
itemCount : itemCount,
itemBuilder : (BuildContext context, int index) {},
);
// It is recommended to use a thumbnail picture,because the original picture is too large, it may cause repeated loading and cause flashing.
DragSortView(
imageList,
space : 5,
margin : EdgeInsets.all(20),
padding : EdgeInsets.all(0),
itemBuilder : (BuildContext context, int index) {},
initBuilder : (BuildContext context) {},
onDragListener : (MotionEvent event, double itemWidth) {
/// Judge to drag to the specified position to delete
/// return true;
if (event.globalY > 600) {
return true;
}
return false;
},
);
请参阅更改日志页面以了解最近更改的内容。
Flukit UI Kit中的另一个NineGridView,使用GridView实现。但是在这个项目中使用了Stack + Positioned。
苔藓。
使用Flutter开发的GitHub客户端应用程序,支持Android iOS Web。
网页:颤动网页。