blurry_modal_progress_hud 1.0.2 blurry_modal_progress_hud: ^1.0.2 copied to clipboard
Just like modal_progress_hud this is a simple widget wrapper to enable modal progress hud (a modal progress indicator, hud = heads up display)
import '../screens/homePage.dart';
import '../screens/landingPage.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
initialRoute: LandingPage.routeName,
routes: {
HomePage.routeName: (context) => HomePage(),
LandingPage.routeName: (context) => LandingPage()
},
);
}
}