FolderStack constructor
const
FolderStack({
- Key? key,
- required List<
String> upperItems, - required List<
Widget> children, - ValueChanged<
FoldStatus> ? onFolderStateChange, - VerticalDirection verticalDirection = VerticalDirection.down,
- AlignmentGeometry alignment = AlignmentDirectional.topStart,
- TextDirection? textDirection,
- StackFit fit = StackFit.loose,
- Clip clipBehavior = Clip.hardEdge,
Implementation
const FolderStack({
super.key,
required this.upperItems,
required this.children,
this.onFolderStateChange,
this.verticalDirection = VerticalDirection.down,
this.alignment = AlignmentDirectional.topStart,
this.textDirection,
this.fit = StackFit.loose,
this.clipBehavior = Clip.hardEdge,
});