flutter_control_pad icon indicating copy to clipboard operation
flutter_control_pad copied to clipboard

A control pad with a virtual joystick and buttons.

control_pad

A virtual pad with joystick controller and configurable buttons.

Features

  • [X] Joystick controller
  • [X] Pad's buttons
  • [X] Configurable events interval
  • [X] Configurable colors

Usage

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Control Pad Example'),
      ),
      body: Container(
        color: Colors.white,
        child: JoystickView(),
      ),
    );
  }
}

Questions or Feedback?

Feel free to open an issue.