overlap_transition

Last updated:

0 purchases

overlap_transition Image
overlap_transition Images
Add to Cart

Description:

overlap transition

Step 1:
Install a controller.
final controller = OverlapTransitionController();
copied to clipboard
Step 2:
import the dependency.
import 'package:overlap_transition/overlap_transition.dart';
copied to clipboard
Step 3:
Add widgets OverlapTransition
return OverlapTransition(
duration: Duration(seconds: 1),
curves: Curves.decelerate,

overlapTransitionController: controller,
primary: Scaffold(
body: Center(
child: ElevatedButton(
onPressed: () => controller.forward(),
child: Text("Next"),
),
),
),
secundary: Scaffold(
body: Center(
child: ElevatedButton(
onPressed: () => controller.reverse(),
child: Text("Back"),
),
),
),
);
copied to clipboard


primary
Fist wdiget


secundary
Widget overlap

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.