slideRightWithFade method
Implementation
Widget slideRightWithFade(Widget view) {
return SlideTransition(
position: Tween<Offset>(
begin: const Offset(1.0, 0.0),
end: Offset.zero,
).animate(primary),
child: Opacity(
opacity: primary.value,
child: view,
),
);
}