NyModalLayout constructor

const NyModalLayout({
  1. Key? key,
  2. required Widget child,
  3. List<Widget> actionsRow = const [],
  4. List<Widget> actionsColumn = const [],
  5. double? height,
  6. bool showHandle = true,
  7. BoxDecoration? decoration,
  8. Color? handleColor,
  9. Color? backgroundColor,
})

Implementation

const NyModalLayout({
  super.key,
  required this.child,
  this.actionsRow = const [],
  this.actionsColumn = const [],
  this.height,
  this.showHandle = true,
  this.decoration,
  this.handleColor,
  this.backgroundColor,
});