flutter_core_time_dilation
Adjust animation speed in Flutter apps by setting a time dilation factor. Use to slow down or speed up animations for debugging or testing purposes.
Instructions
RPC: Set the time dilation factor for animations in the Flutter app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dilation | Yes | Time dilation factor (1.0 is normal speed, >1.0 is slower, <1.0 is faster) | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"dilation": {
"description": "Time dilation factor (1.0 is normal speed, >1.0 is slower, <1.0 is faster)",
"minimum": 0,
"type": "number"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"dilation"
],
"type": "object"
}