NiceResizable constructor
const
NiceResizable({ - Key? key,
- required Widget child,
- double initialWidth = 300,
- double initialHeight = 200,
- double minWidth = 100,
- double minHeight = 80,
- double maxWidth = 800,
- double maxHeight = 600,
- double handleSize = 8,
- void onResize(
- double width,
- double height
)?,
})
Implementation
const NiceResizable({
super.key,
required this.child,
this.initialWidth = 300,
this.initialHeight = 200,
this.minWidth = 100,
this.minHeight = 80,
this.maxWidth = 800,
this.maxHeight = 600,
this.handleSize = 8,
this.onResize,
});