artur-ios-dev/flutter_control_pad
带有虚拟摇杆和按钮的控制面板。
- Stars
- 40
- Forks
- 22
- 最近推送(UTC)
- 2022年10月15日
- 项目状态
- 未归档
语言Dart
使用的依赖
依赖清单 3 项
- flutter
{"sdk":"flutter"} - pedantic开发依赖
^1.0.0 - flutter_test开发依赖
{"sdk":"flutter"}
原始 README
以下为英文项目原文快照,最新内容请访问 GitHub。
展开 / 收起项目 README
control_pad
A virtual pad with joystick controller and configurable buttons.
https://i.imgur.com/ZwfNg9W.jpg https://i.imgur.com/lOdTedp.png
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.