This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MainApp()); | |
} | |
class MainApp extends StatelessWidget { | |
const MainApp({super.key}); | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:animated_to/animated_to.dart'; | |
import 'package:flutter/material.dart'; | |
class TwoLinePage extends StatefulWidget { | |
const TwoLinePage({super.key}); | |
@override | |
State<TwoLinePage> createState() => _TwoLinePageState(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:animated_to/animated_to.dart'; | |
import 'package:flutter/material.dart'; | |
class TwoLinePage extends StatefulWidget { | |
const TwoLinePage({super.key}); | |
@override | |
State<TwoLinePage> createState() => _TwoLinePageState(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:animated_to/animated_to.dart'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(const MainApp()); | |
class MainApp extends StatelessWidget { | |
const MainApp({super.key}); | |
@override | |
Widget build(BuildContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { | |
const AnimationPage({super.key}); | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { | |
const AnimationPage({super.key}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { | |
const AnimationPage({super.key}); | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { | |
const AnimationPage({super.key}); | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter/physics.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { | |
const AnimationPage({super.key}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/physics.dart'; | |
void main() { | |
runApp(const MaterialApp(home: AnimationPage())); | |
} | |
class AnimationPage extends StatefulWidget { |