statemachine 1.0.3
statemachine: ^1.0.3 copied to clipboard
A simple, but generic state machine framework for Dart.
example/example.dart
library example;
import 'tooltip.dart';
void main() {
new Tooltip(offsetX: -16, offsetY: 8);
}