show method

void show({
  1. String? status,
})

Implementation

void show({String? status}) {
  // write a simple loader that uses a context in flutter
  showDialog(
      context: context!,
      barrierDismissible: true,
      builder: (BuildContext context) {
        return const SpinKitFadingCircle(
          color: ffffff,
        );
        // const SizedBox(
        //   height: 10,
        // ),
        // Text(
        //   status ?? 'loading...',
        //   style: const TextStyle(color: Colors.black, fontSize: 16),
        // ),
        // ],

        // );
      });
}