CustomBackButton function

Widget CustomBackButton(
  1. BuildContext context
)

Implementation

Widget CustomBackButton(BuildContext context) {
    return CustomIconButton(
        () { navPop(context); },
        'left',
        'lg'
    );
}