getLoader function

Widget getLoader(
  1. dynamic context
)

Implementation

Widget getLoader(context) {
  return SizedBox(
    height: 100,
    child: Center(
      child: CircularProgressIndicator(color: Theme.of(context).primaryColor),
    ),
  );
}