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.