alphabet_list_scroll_view 带有 A-Z 侧滚动条的可自定义列表视图。 2021-03-31 173 horizontal_data_table 左侧有固定列的水平数据表。 2022-09-05 289 flutter_animation_progress_bar 可以分组为多个部分。 2022-10-12 165 implicitly_animated_reorderable_list 它在两个列表的更改之间隐式动画,支持重新排序其...
- 'velocity':拖动操作的速度,即每秒移动的像素数。- 'orientation':拖动操作的方向,可以是水平('Axis.horizontal')或垂直('Axis.vertical')。- 'sourceTimeStamp':拖动操作的起始时间戳。- 'drivenChild':拖动操作期间正在拖拽的子widget。- 'feedbackSize':用于显示拖动反馈的widget的大小。 使用'DraggableDetails...
ResponsiveWrapper.builder( BouncingScrollWrapper.builder(context, widget!), maxWidth: 1200, minWidth: 450, defaultScale: true, breakpoints: [ ResponsiveBreakpoint.resize(450, name: MOBILE), ResponsiveBreakpoint.autoScale(800, name: MOBILE), ResponsiveBreakpoint.autoScale(800, name: TABLET), Respons...
'https://upload-images.jianshu.io/upload_images/2990730-01ced8f6f95219ec?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240', ), Car( name: '布加迪Chiron', imageUrl: 'https://upload-images.jianshu.io/upload_images/2990730-7fc8359eb61adac0?imageMogr2/auto-orient/strip%7CimageView2/2...
scrollDirection Axis列表的排列方向,默认值为Axis.vertical垂直方向,Axis.horizontal为水平方向。 padding EdgeInsertsGeometry列表内部的空白区域,若有child,child位于padding内部 reverse bool组件排列反向,默认为false children List<Widget>列表元素,List中元素全部为Widget类型 ...
//页面被选中指示器颜色this.scrollDirection=Axis.horizontal,//滚动方向(默认水平)this.indicatorSpaceBetween=6,//指示器之间的间距this.autoDisplayInterval=0,//自动播放时间间隔(不设置或设置为0,则不自动播放)this.onPageSelected,//页面被展示回调this.indicatorAlign=Alignment.bottomCenter,//指示器位置this.on...
blue[colorDatas[index%10]], size: 100, ); }, itemCount: 20, ); } // @override // Widget build(BuildContext context) { // return ListView( // // 列表滑动的方向 // scrollDirection: Axis.vertical, // // scrollDirection: Axis.horizontal, // children: <Widget>[ /// Text( ///...
horizontal_data_table 左侧有固定列的水平数据表。 2023-06-17 350 flutter_animation_progress_bar 可以分组为多个部分。 2022-10-12 198 grouped_list 可以分组为多个部分。 2022-06-18 1198 keframe 帮助你提升 Flutter 应用在任何场景下的流畅度。 2022-05-14 159 flutter_pagewise 一次加载一页(或一批)内...
scrollDirection: Axis.horizontal, itemCount: views.length, itemBuilder: (BuildContext context, int index) { return Align( alignment: Alignment.bottomCenter, child: Container( height: 200, width: MediaQuery.of(context).size.width * 0.25,
左边列比较常用,右边列可作了解: pushAndRemoveUntil: 跳转到新的页面,并把当前的页面关闭; 【pop与popUntil区别】 pop是直接返回上一个页面,popUntil是里边有一个判断; maybePop经常用于if语句判断,判断是否可以导航,再做后续操作; 【pushAndRemoveUntil与pushNamedAndRemoveUntil区别】 ...