@@ -5,13 +5,13 @@ import 'package:flutter/material.dart';
55import 'package:flutter/scheduler.dart' ;
66import 'package:flutter/services.dart' ;
77import 'package:flutter_box_transform/flutter_box_transform.dart' ;
8- import 'package:hyper_effects_demo/stories/chained_animation .dart' ;
8+ import 'package:hyper_effects_demo/stories/spring_animation .dart' ;
99import 'package:hyper_effects_demo/stories/color_filter_scroll_transition.dart' ;
1010import 'package:hyper_effects_demo/stories/counter_app.dart' ;
1111import 'package:hyper_effects_demo/stories/scroll_phase_transition.dart' ;
1212import 'package:hyper_effects_demo/stories/scroll_wheel_blur.dart' ;
1313import 'package:hyper_effects_demo/stories/scroll_wheel_transition.dart' ;
14- import 'package:hyper_effects_demo/stories/spring_animation .dart' ;
14+ import 'package:hyper_effects_demo/stories/one_shot_animation .dart' ;
1515import 'package:hyper_effects_demo/stories/text_animation.dart' ;
1616import 'package:hyper_effects_demo/stories/windows_settings_transition.dart' ;
1717
@@ -29,7 +29,6 @@ class MyApp extends StatelessWidget {
2929 return AdaptiveTheme (
3030 light: ThemeData (
3131 useMaterial3: true ,
32- // brightness: Brightness.light,
3332 colorScheme: ColorScheme .fromSeed (
3433 brightness: Brightness .light,
3534 seedColor: Colors .blue,
@@ -46,8 +45,6 @@ class MyApp extends StatelessWidget {
4645 ),
4746 dark: ThemeData (
4847 useMaterial3: true ,
49- // brightness: Brightness.dark,
50- // colorSchemeSeed: Colors.blue,
5148 colorScheme: ColorScheme .fromSeed (
5249 brightness: Brightness .dark,
5350 seedColor: Colors .blue,
@@ -84,25 +81,21 @@ class Storyboard extends StatefulWidget {
8481class _StoryboardState extends State <Storyboard > {
8582 final List <Story > animationStories = [
8683 const Story (
87- title: 'Spring Animation ' ,
88- child: SpringAnimation (),
84+ title: 'Text Rolling Animations ' ,
85+ child: TextAnimation (),
8986 ),
9087 const Story (
91- title: 'Text Animations ' ,
92- child: TextAnimation (),
88+ title: 'Rolling Counter App ' ,
89+ child: CounterApp (),
9390 ),
9491 const Story (
95- title: 'Chained Animation' ,
96- child: ChainedAnimation (),
92+ title: 'Fade In Animation' ,
93+ child: OneShotAnimation (),
9794 ),
9895 const Story (
99- title: 'Counter App ' ,
100- child: CounterApp (),
96+ title: 'Spring Animation ' ,
97+ child: SpringAnimation (),
10198 ),
102- // const Story(
103- // title: 'Chained Animation',
104- // child: ChainedAnimation(),
105- // )
10699 ];
107100 final List <Story > transitionStories = [
108101 const Story (
0 commit comments