SimpleHiddenDrawer constructor

const SimpleHiddenDrawer({
  1. Key? key,
  2. int initPositionSelected = 0,
  3. bool isDraggable = true,
  4. double slidePercent = 80.0,
  5. double verticalScalePercent = 80.0,
  6. double contentCornerRadius = 10.0,
  7. Curve curveAnimation = Curves.decelerate,
  8. required AsyncScreenBuilder screenSelectedBuilder,
  9. required Widget menu,
  10. bool enableScaleAnimation = true,
  11. bool enableCornerAnimation = true,
  12. TypeOpen typeOpen = TypeOpen.FROM_LEFT,
  13. bool withShadow = true,
  14. List<BoxShadow>? boxShadow,
})

Implementation

const SimpleHiddenDrawer({
  Key? key,
  this.initPositionSelected = 0,
  this.isDraggable = true,
  this.slidePercent = 80.0,
  this.verticalScalePercent = 80.0,
  this.contentCornerRadius = 10.0,
  this.curveAnimation = Curves.decelerate,
  required this.screenSelectedBuilder,
  required this.menu,
  this.enableScaleAnimation = true,
  this.enableCornerAnimation = true,
  this.typeOpen = TypeOpen.FROM_LEFT,
  this.withShadow = true,
  this.boxShadow,
}) : super(key: key);