progress_hud10 1.1.2 copy "progress_hud10: ^1.1.2" to clipboard
progress_hud10: ^1.1.2 copied to clipboard

progress_hud is a clean and lightweight HUD meant to display the progress of an ongoing task on your Flutter app

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:progress_hud10/progress_hud10.dart';
import 'dart:async';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  final key = GlobalKey<ProgressHud10State>();

  @override
  void initState() {
    super.initState();
    
    Future.delayed(const Duration(seconds:30), (){
        this.key.currentState.updateLoad(false);
    });
  }

   
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          backgroundColor: Colors.red,
          title: const Text('星星编程'),
        ),
        body: ProgressHud10(key:this.key,loading: true ,color: Colors.red,width: 160,height: 160, child: Center(
        child: Text("加载动画简单示例"),
      ),
      ),
    )
    );
  }
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

progress_hud is a clean and lightweight HUD meant to display the progress of an ongoing task on your Flutter app

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on progress_hud10