AnimatedDrawerContent constructor
const
AnimatedDrawerContent({
- Key? key,
- required AnimatedDrawerController controller,
- required Widget child,
- bool isDraggable = true,
- required double slidePercent,
- required double verticalScalePercent,
- required double contentCornerRadius,
- bool withPaddingTop = false,
- bool withShadow = true,
- bool enableScaleAnimation = true,
- bool enableCornerAnimation = true,
- TypeOpen typeOpen = TypeOpen.FROM_LEFT,
- List<
BoxShadow> ? boxShadow,
Implementation
const AnimatedDrawerContent({
Key? key,
required this.controller,
required this.child,
this.isDraggable = true,
required this.slidePercent,
required this.verticalScalePercent,
required this.contentCornerRadius,
this.withPaddingTop = false,
this.withShadow = true,
this.enableScaleAnimation = true,
this.enableCornerAnimation = true,
this.typeOpen = TypeOpen.FROM_LEFT,
this.boxShadow,
}) : super(key: key);