12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import 'package:flutter/material.dart';
- class LoadingDialog extends Dialog {
- String text;
- LoadingDialog({Key key, @required this.text}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Material( //创建透明层
- type: MaterialType.transparency, //透明类型
- child: Center( //保证控件居中效果
- child: SizedBox(
- width: 120.0,
- height: 120.0,
- child: Container(
- decoration: ShapeDecoration(
- color: Color(0xffffffff),
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.all(
- Radius.circular(8.0),
- ),
- ),
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: <Widget>[
- CircularProgressIndicator(),
- Padding(
- padding: const EdgeInsets.only(
- top: 20.0,
- ),
- child: Text(
- text,
- style: TextStyle(fontSize: 12.0),
- ),
- ),
- ],
- ),
- ),
- ),
- ),
- );
- }
- }
|