horizontal method
Implementation
Widget horizontal(double aniValue, int index, double page, Widget child) {
if (page == index) {
return child;
} else if (page > index) {
return LayoutBuilder(builder: (context, constraints) {
return Transform.translate(offset: Offset(constraints.maxWidth * (1 - aniValue), 0), child: child);
});
} else {
return LayoutBuilder(builder: (context, constraints) {
return Transform.translate(offset: Offset(-constraints.maxWidth * (1 - aniValue), 0), child: child);
});
}
}