ScaleView constructor

const ScaleView({
  1. Key? key,
  2. double minScale = 1.0,
  3. double maxScale = 10.0,
  4. double doubleClickScale = 3.0,
  5. Alignment alignment = Alignment.center,
  6. Axis? parentScrollableAxis = Axis.horizontal,
  7. required Widget child,
})

Implementation

const ScaleView({
  Key? key,
  this.minScale = 1.0,
  this.maxScale = 10.0,
  this.doubleClickScale = 3.0,
  this.alignment = Alignment.center,
  this.parentScrollableAxis = Axis.horizontal,
  required this.child,
}) : super(key: key);