AnimatedListView constructor
const
AnimatedListView({
- required List<
DropdownValue> allDropdownValues, - required Duration animationDuration,
- required Curve animationCurve,
- required String queryString,
- required Widget listBuilder(
- DropdownValue dropdownValue,
- int index
- required double expectedDropdownHeight,
- required double targetWidth,
- required Alignment dropdownAlignment,
- required Color borderColor,
- required BorderRadius borderRadius,
- required double borderThickness,
- required List<
BoxShadow> boxShadows, - required List<
double> listOfTileHeights, - required DropdownScrollbarStyle dropdownScrollbarStyle,
- Key? listviewKey,
- Key? key,
Implementation
const AnimatedListView(
{required this.allDropdownValues,
required this.animationDuration,
required this.animationCurve,
required this.queryString,
required this.listBuilder,
required this.expectedDropdownHeight,
required this.targetWidth,
required this.dropdownAlignment,
required this.borderColor,
required this.borderRadius,
required this.borderThickness,
required this.boxShadows,
required this.listOfTileHeights,
required this.dropdownScrollbarStyle,
this.listviewKey,
Key? key})
: super(key: key);