-
Book Overview & Buying
-
Table Of Contents
Flutter Cookbook, Second Edition - Second Edition
By :
The animations package, developed by the Flutter team, allows you to design animations based on the Material Design motion specifications. The package contains pre-made animations, which you can customize with your own content: the result is that with very few lines of code, you will be able to add complex and compelling effects to your apps, including the Container Transform, which you will implement in this recipe.
Specifically, in this recipe, you will transform a ListTile into a full screen, as shown in the following screenshot:

Figure 12.8: An animations package example
To follow along with this recipe, you should have completed the code in the previous recipe: Implementing swiping with the Dismissible widget.
In this recipe, you will use the animations Container Transform:
animations dependency to your project by typing the following command:...