configurable_expansion_tile_null_safety 3.3.2 configurable_expansion_tile_null_safety: ^3.3.2 copied to clipboard
A Configurable Expansion Tile edited from the flutter material implementation that allows for customization
3.3.2 #
- add controler
ConfigurableExpansionTileController
3.3.1 #
- Modified version number
3.3.0 #
new api
final Widget Function(bool isExpanded,Animation<double> iconTurns,Animation<double> heightFactor) header;
eg:
ConfigurableExpansionTile(
header: (isExpanded,_,heightFactor) {
return Expanded(
child: ListTile(
title: Text(e.title),
trailing: AnimatedIcon(
icon: AnimatedIcons.menu_close,
progress: heightFactor)
)
);
})
3.2.1 #
final Widget header
change tofinal Widget Function(bool isExpanded) header
- upgrade to flutter 3.13.4
3.2.0 #
- fix dart hints
- upgrade to flutter 3.7.7
3.1.1 #
- doc update
3.1.0 #
- remove
children
attribute,Please replace withchildrenBody
- add
enableExpanded
attribute
3.0.0 #
- upgrade to
Flutter 3.3.0
2.0.3 #
- Added
childrenBody
property - 新增
childrenBody
属性
2.0.2 #
- Modify package name
configurable_expansion_tile
toconfigurable_expansion_tile_null_safety
2.0.1 #
- upgrade to
Flutter 3.0
2.0.0 #
新增空安全支持