PatternView constructor

const PatternView({
  1. Key? key,
  2. int matrixX = 3,
  3. int matrixY = 3,
  4. double? tapRange,
  5. PatternLockStyle lockStyle = PatternLockStyle.normal,
  6. bool? debugshowTapRange,
  7. VoidCallback? onTapDown,
  8. NativeCellCallback? onCell,
  9. CellCallback? onComplete,
  10. dynamic onUpdate(
    1. Cell current,
    2. List<int> selected
    )?,
})

Pattern Lock Widget

Implementation

const PatternView({
  super.key,
  this.matrixX = 3,
  this.matrixY = 3,
  this.tapRange,
  this.lockStyle = PatternLockStyle.normal,
  this.debugshowTapRange,
  this.onTapDown,
  this.onCell,
  this.onComplete,
  this.onUpdate,
});