AutoScaleAnimatedColumn constructor
const
AutoScaleAnimatedColumn({
- Key? key,
- required List<
Widget> items, - Duration? duration,
- EdgeInsets? padding,
- double? verticalSpacing,
- EdgeInsets? margin,
- Offset? offset,
- double? opacity,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline? textBaseline,
A widget that displays a column of items with animations for slide and fade effects.
The AutoScaleAnimatedColumn widget animates its children with a slide and fade effect. The animations are controlled by AnimationControllers and can be customized with various parameters.
Implementation
const AutoScaleAnimatedColumn({
super.key,
required this.items,
this.duration,
this.padding,
this.verticalSpacing,
this.margin,
this.offset,
this.opacity,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.textDirection,
this.verticalDirection = VerticalDirection.down,
this.textBaseline,
});