cleanup for publish

This commit is contained in:
Luigi Rosso
2022-06-14 09:07:23 -07:00
parent 4a5a49bae3
commit ef8e8d63f5
5 changed files with 15 additions and 9 deletions

View File

@ -6,7 +6,7 @@ import 'package:rive_example/little_machine.dart';
import 'package:rive_example/play_one_shot_animation.dart';
import 'package:rive_example/play_pause_animation.dart';
import 'package:rive_example/simple_animation.dart';
import 'package:rive_example/simple_machine_action.dart';
import 'package:rive_example/simple_machine_listener.dart';
import 'package:rive_example/simple_state_machine.dart';
import 'package:rive_example/state_machine_skills.dart';
@ -153,12 +153,12 @@ class Home extends StatelessWidget {
height: 10,
),
ElevatedButton(
child: const Text('State Machine with Action'),
child: const Text('State Machine with Listener'),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute<void>(
builder: (context) => const StateMachineAction(),
builder: (context) => const StateMachineListener(),
),
);
},