BaseResizableView constructor

const BaseResizableView({
  1. Key? key,
  2. bool enabled = true,
  3. required Rect boundary,
  4. required Offset offset,
  5. required Size size,
  6. required Widget child,
  7. Decoration? cornerDecoration,
  8. double cornerSize = 24,
  9. ValueChanged<Rect>? onResize,
})

Implementation

const BaseResizableView(
    {super.key,
    this.enabled = true,
    required this.boundary,
    required this.offset,
    required this.size,
    required this.child,
    this.cornerDecoration,
    this.cornerSize = 24,
    this.onResize});