A virtual pad with joystick controller and configurable buttons.
- Joystick controller
- Pad's buttons
- Configurable events interval
- Configurable colors
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(),
),
);
}
}
Feel free to open an issue.