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.