32 lines
778 B
Dart
32 lines
778 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class utils {
|
|
static showToast(String? msg) {
|
|
if (msg != null && msg != "null" && msg.isNotEmpty) {
|
|
Fluttertoast.showToast(msg: msg);
|
|
}
|
|
}
|
|
|
|
static loader() {
|
|
Get.dialog(
|
|
Dialog(
|
|
elevation: 0,
|
|
backgroundColor: Colors.transparent,
|
|
child: WillPopScope(
|
|
child: const Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
CircularProgressIndicator(
|
|
color: Color(0xFF0093FF),
|
|
),
|
|
],
|
|
),
|
|
onWillPop: () async => false),
|
|
),
|
|
barrierDismissible: false,
|
|
);
|
|
}
|
|
}
|