FlickTileBox constructor

const FlickTileBox({
  1. Key? key,
  2. int rows = 12,
  3. int columns = 8,
  4. double? tileSize,
  5. double spacing = 6,
  6. Color color = const Color(0xFF6EA8FE),
  7. double minOpacity = 0.08,
  8. double maxOpacity = 0.95,
  9. double minSpeed = 0.35,
  10. double maxSpeed = 0.9,
  11. double borderRadius = 4,
  12. int? seed,
  13. Color? backgroundColor,
})

Implementation

const FlickTileBox({
  super.key,
  this.rows = 12,
  this.columns = 8,
  this.tileSize,
  this.spacing = 6,
  this.color = const Color(0xFF6EA8FE),
  this.minOpacity = 0.08,
  this.maxOpacity = 0.95,
  this.minSpeed = 0.35,
  this.maxSpeed = 0.9,
  this.borderRadius = 4,
  this.seed,
  this.backgroundColor,
});