You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
queuing_system/lib/widget/app_loader_widget.dart

33 lines
1007 B
Dart

// import 'package:flutter/material.dart';
// import 'package:queuing_system/widget/loader/gif_loader_container.dart';
//
// class AppLoaderWidget extends StatefulWidget {
// AppLoaderWidget({Key? key, this.title, this.containerColor}) : super(key: key);
//
// final String title;
// final Color containerColor;
//
// @override
// _AppLoaderWidgetState createState() => _AppLoaderWidgetState();
// }
//
// class _AppLoaderWidgetState extends State<AppLoaderWidget> {
// @override
// Widget build(BuildContext context) {
// return SizedBox(
// height: MediaQuery.of(context).size.height,
// child: Stack(
// children: [
// Container(
// color: widget.containerColor ?? Colors.grey.withOpacity(0.6),
// ),
// Container(
// child: GifLoaderContainer(),
// margin: EdgeInsets.only(
// bottom: MediaQuery.of(context).size.height * 0.09))
// ],
// ),
// );
// }
// }