Flutter 系统是如何实现ExpansionPanelList的示例代码
程序员文章站
2023-09-07 22:07:24
在了解expansionpanellist实现前,先来了解下mergeablematerial,它展示多个mergeablematerialitem组件,当子组件发生变化时,以动画的方式打开或者关闭子...
在了解expansionpanellist实现前,先来了解下mergeablematerial,它展示多个mergeablematerialitem组件,当子组件发生变化时,以动画的方式打开或者关闭子组件,mergeablematerial的父控件需要在主轴方向是一个没有限制的控件,比如singlechildscrollview、row、column等。
基本用法如下:
singlechildscrollview( child: mergeablematerial( children: [ materialslice( key: valuekey(1), child: container( height: 45, color: colors.primaries[1 % colors.primaries.length], )), materialgap(key: valuekey(2)), materialslice( key: valuekey(3), child: container( height: 45, color: colors.primaries[1 % colors.primaries.length], )), materialgap(key: valuekey(4)), materialslice( key: valuekey(5), child: container( height: 45, color: colors.primaries[1 % colors.primaries.length], )), ], ), )
效果如下:
mergeablematerial的子控件只能是materialslice和materialgap,materialslice是带子控件的控件,显示实际内容,materialgap用于分割,只能放在materialslice中间。
静态情况下,看不出具体的效果,动态改变子组件用法如下:
list<mergeablematerialitem> items = []; list.generate(_count, (index) { items.add(materialslice( key: valuekey(index * 2), child: container( height: 45, color: colors.primaries[index % colors.primaries.length], ))); }); return singlechildscrollview( child: mergeablematerial( children: items, ), )
效果如下:
主要看增加/删除子组件时的动画效果。
增加分割线和阴影:
mergeablematerial( hasdividers: true, elevation: 24, children: items, )
效果如下:
阴影值不能随便设置,只能设置如下值:1, 2, 3, 4, 6, 8, 9, 12, 16, 24
此控件可以实现什么样的效果呢?看下面效果:
实现代码:
bool _expand = false; @override widget build(buildcontext context) { return column( children: <widget>[ container( height: 45, color: colors.green.withopacity(.3), alignment: alignment.centerright, child: iconbutton( icon: icon(icons.arrow_drop_down), onpressed: () { setstate(() { _expand = !_expand; }); }, ), ), _expand ? mergeablematerial( hasdividers: true, elevation: 24, children: [ materialslice( key: valuekey(1), child: container( height: 200, color: colors.green.withopacity(.3), )) ], ) : container(), container( height: 45, color: colors.red.withopacity(.3), ), ], ); }
看到这个效果是否想到了expansionpanellist呢?系统控件expansionpanellist就是使用此控件实现的。
交流
flutter博客地址(近200个控件用法):
总结
到此这篇关于flutter 系统是如何实现expansionpanellist的示例代码的文章就介绍到这了,更多相关flutter 实现expansionpanellist内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读