ExpandableFloatingContainer constructor

const ExpandableFloatingContainer({
  1. Key? key,
  2. required Widget icon(
    1. bool isExpanded
    ),
  3. required Widget title,
  4. required Color backgroundColor,
  5. required Widget child,
  6. double horizontalPadding = 16.0,
  7. double verticalPercentage = 0.7,
  8. int animationMillis = 300,
  9. double? maxWidth,
})

Implementation

const ExpandableFloatingContainer(
    {super.key,
    required this.icon,
    required this.title,
    required this.backgroundColor,
    required this.child,
    this.horizontalPadding = 16.0,
    this.verticalPercentage = 0.7,
    this.animationMillis = 300,
    this.maxWidth});