blurry_modal_progress_hud 1.0.2 copy "blurry_modal_progress_hud: ^1.0.2" to clipboard
blurry_modal_progress_hud: ^1.0.2 copied to clipboard

outdated

Just like modal_progress_hud this is a simple widget wrapper to enable modal progress hud (a modal progress indicator, hud = heads up display)

example/lib/main.dart

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()
      },
    );
  }
}
40
likes
0
pub points
92%
popularity

Publisher

unverified uploader

Just like modal_progress_hud this is a simple widget wrapper to enable modal progress hud (a modal progress indicator, hud = heads up display)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on blurry_modal_progress_hud