AnimatedListView constructor
const
AnimatedListView({
- required List<
String> allDropdownValues, - required Duration animationDuration,
- required Curve animationCurve,
- required String queryString,
- required Widget listBuilder(
- String dropdownValue
- required double expectedDropdownHeight,
- required double targetWidth,
- required DropdownAlignment dropdownAlignment,
- required Color borderColor,
- required BorderRadius borderRadius,
- required double borderThickness,
- required List<
BoxShadow> boxShadows, - required double singleTileHeight,
- required DropdownScrollbarStyle dropdownScrollbarStyle,
- 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.singleTileHeight,
required this.dropdownScrollbarStyle,
Key? key})
: super(key: key);