Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alpaca00/command-driven-list
drag-and-drop command extension for Flutter Driver
https://github.com/alpaca00/command-driven-list
Last synced: about 9 hours ago
JSON representation
drag-and-drop command extension for Flutter Driver
- Host: GitHub
- URL: https://github.com/alpaca00/command-driven-list
- Owner: Alpaca00
- Created: 2024-11-02T20:17:38.000Z (6 days ago)
- Default Branch: master
- Last Pushed: 2024-11-02T20:48:20.000Z (6 days ago)
- Last Synced: 2024-11-02T21:26:04.431Z (6 days ago)
- Language: CMake
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Command Extension - flutter_driver
Example JSON-RPC Request
```json
{
"jsonrpc": "2.0",
"method": "dragAndDropWithCommandExtension",
"params": {
"startX": 205,
"startY": 116,
"endX": 0,
"endY": 172,
"duration": 15000
},
"id": "1"
}
```JSON-RPC Response Structure
```json
{
"jsonrpc": "2.0",
"result": {
"success": true
},
"id": "1"
}
```#### Install Dependencies:
```dart
flutter clean
flutter pub get
```#### Build command
```agsl
flutter build apk --debug
```