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實作。
苔蘚。
使用Flutter開發的GitHub客戶端應用程序,支援Android iOS Web。
網頁:顫動網頁。