rightButton static method
Implementation
static GestureDetector rightButton(
{required int pageNumber, required Function(int) onTap}) {
return GestureDetector(
onTap: () => onTap(pageNumber + 1),
child: Column(children: [arrowIcon(Icons.arrow_forward_ios), _thing]),
);
}