Last active
July 19, 2020 04:53
-
-
Save branflake2267/f741056416117e7c35dfc32ddea25f39 to your computer and use it in GitHub Desktop.
Simple loading... Flutter widget
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'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue), | |
debugShowCheckedModeBanner: false, | |
home: Scaffold( | |
body: Center( | |
child: Loading(), | |
), | |
), | |
); | |
} | |
} | |
class Loading extends StatefulWidget { | |
@override | |
_LoadingState createState() => _LoadingState(); | |
} | |
// 1. Add a the SingleTickerProviderStateMixin mixin | |
class _LoadingState extends State<Loading> with SingleTickerProviderStateMixin { | |
static const totalPeriodCount = 3; | |
AnimationController _controller; | |
Animation<int> _animation; | |
// 2. Initialize the animation controller and animation counter | |
@override | |
void initState() { | |
super.initState(); | |
_controller = | |
AnimationController(vsync: this, duration: Duration(seconds: 1)); | |
_animation = IntTween(begin: 0, end: totalPeriodCount).animate(_controller) | |
..addStatusListener((state) { | |
if (state == AnimationStatus.completed) { | |
// NOTE: Change the animation counter direction | |
_controller.reverse(); | |
} else if (state == AnimationStatus.dismissed) { | |
// NOTE: Change the animation counter direction | |
_controller.forward(); | |
} | |
}) | |
..addListener(() { | |
// NOTE: Update the view | |
setState(() {}); | |
}); | |
_controller.forward(); | |
} | |
@override | |
Widget build(BuildContext context) { | |
var text = <TextSpan>[TextSpan(text: 'Loading')]; | |
// 3. Use the animation counter | |
int visiblePeriodCount = totalPeriodCount - _animation.value; | |
for (int p = 0; p < totalPeriodCount; p++) { | |
var periodStyle = | |
TextStyle(color: Theme.of(context).textTheme.headline2.color); | |
if (visiblePeriodCount <= p) { | |
periodStyle = | |
TextStyle(color: Theme.of(context).scaffoldBackgroundColor); | |
} | |
text.add(TextSpan(text: ".", style: periodStyle)); | |
} | |
return Scaffold( | |
body: Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
RichText( | |
text: TextSpan( | |
children: text, | |
style: Theme.of(context).textTheme.headline2)) | |
]), | |
), | |
); | |
} | |
// 4. Tear down the animation controller | |
@override | |
void dispose() { | |
_controller.dispose(); | |
super.dispose(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment