Updated 30 June 2023
Use Fade Transition in Flutter class is a widget for helping the user to make a selection in material design. It is automatically animated between the sizes of two children, fading between them, see Fade Transition.
In Flutter, The Fade Transition is used when you need to give a fade kind of transition. It also
Its Opacity does not animate changes in opacity.
AnimatedOpacity, which animates changes in opacity without taking an explicit Animation argument.
SliverFadeTransition is the sliver version of this widget.
You can find out more about the Flutter app development services page.
1.) Create a Scaffold.
2.) Create the Controller and Animation for the widget.
3.) Use the Fade Transition widget.
Inside Scaffold widgets, it Implements the basic material design visual layout structure. First, initialize the main app as a stateless widget.
This class provides APIs for showing drawers and bottom sheets. We can add the background color inside the scaffold widget.
It also supports special Material Design components, such as Drawers, AppBars, and SnackBars.
1 2 3 4 5 6 7 8 9 10 11 12 |
void main() { runApp(const FadeInTransitionScreen()); } class FadeInTransitionScreen extends StatefulWidget { FadeInTransitionScreen({ Key? key, }) : super(key: key); @override State<FadeInTransitionScreen> createState() => _FadeInTransitionScreenState(); } |
Now, to change the widget fade transition, a value of 0.0 means the opacity is 0% in which condition the widget is invisible. A value of 1.0 means the opacity is 100%. To set how long the animation should be played, you can pass a Duration instance as a duration argument.
1 2 |
late AnimationController _controller; late Animation _animation; |
In Fade Transition widget cross-fades between two given children and animates itself between their sizes. Inherit the SingleTickerProviderStateMixin to the state.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
import 'package:flutter/material.dart'; import '../../../../mobikul/app_widgets/app_bar.dart'; class FadeInTransitionScreen extends StatefulWidget { FadeInTransitionScreen({ Key? key, }) : super(key: key); @override State<FadeInTransitionScreen> createState() => _FadeInTransitionScreenState(); } class _FadeInTransitionScreenState extends State<FadeInTransitionScreen> with SingleTickerProviderStateMixin { late AnimationController _controller; late Animation _animation; @override void didChangeDependencies() { super.didChangeDependencies(); } @override void initState() { _controller = AnimationController( duration: Duration(seconds: 2), vsync: this, ); _animation = Tween(begin: 0.0, end: 1.0).animate(_controller); _controller.forward(); super.initState(); } @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Theme.of(context).cardColor, appBar: commonAppBar( "Fade Transition", context, ), body: buildUi(), ); } Widget buildUi() { return Column( children: [ Expanded(child: buildChatUi()), // buildBottomView() ], ); } Widget buildChatUi() { return Container( child: Center( child: FadeTransition( opacity: _animation as Animation<double>, child: Center( child: Container( width: 100, height: 100, color: Colors.orange, ))), ), ); } } |
We can now run the app on how to create Fade Transition in a flutter.
Hope this blog helps you to create Fade Transition in a flutter.
So, I hope it will help you out in understanding and get a brief idea about it.
For more understanding please can go through this Link :
That’s all.
Thank you very much.
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.