This commit is contained in:
open-trade 2020-11-29 02:07:26 +08:00
parent 0797334e35
commit 6bb2434b9d

View File

@ -19,7 +19,7 @@ void showLoading(String text, BuildContext context) {
Navigator.pop(context); Navigator.pop(context);
} }
dismissLoading(); dismissLoading();
EasyLoading.show(status: text); EasyLoading.show(status: text, maskType: EasyLoadingMaskType.black);
} }
void dismissLoading() { void dismissLoading() {
@ -28,7 +28,7 @@ void dismissLoading() {
void showSuccess(String text) { void showSuccess(String text) {
dismissLoading(); dismissLoading();
EasyLoading.showSuccess(text); EasyLoading.showSuccess(text, maskType: EasyLoadingMaskType.black);
} }
bool _hasDialog = false; bool _hasDialog = false;
@ -98,18 +98,20 @@ void msgbox(String type, String title, String text, BuildContext context,
dismissLoading(); dismissLoading();
})); }));
} }
EasyLoading.showWidget(Column( EasyLoading.showWidget(
crossAxisAlignment: CrossAxisAlignment.start, Column(
children: [ crossAxisAlignment: CrossAxisAlignment.start,
Text(title, style: TextStyle(fontSize: 21)), children: [
SizedBox(height: 20), Text(title, style: TextStyle(fontSize: 21)),
Text(text, style: TextStyle(fontSize: 15)), SizedBox(height: 20),
SizedBox(height: 20), Text(text, style: TextStyle(fontSize: 15)),
Row( SizedBox(height: 20),
children: buttons, Row(
) children: buttons,
], )
)); ],
),
maskType: EasyLoadingMaskType.black);
} }
class PasswordWidget extends StatefulWidget { class PasswordWidget extends StatefulWidget {