JoystickView constructor

JoystickView({
  1. Key? key,
  2. double? size,
  3. Color? iconsColor = Colors.white54,
  4. Color? backgroundColor = Colors.blueGrey,
  5. Color? innerCircleColor = Colors.blueGrey,
  6. double? opacity,
  7. JoystickDirectionCallback? onDirectionChanged,
  8. Duration? interval,
  9. bool showArrows = true,
})

Implementation

JoystickView(
    {super.key,
    this.size,
    this.iconsColor = Colors.white54,
    this.backgroundColor = Colors.blueGrey,
    this.innerCircleColor = Colors.blueGrey,
    this.opacity,
    this.onDirectionChanged,
    this.interval,
    this.showArrows = true});