master
parent
db379a3bda
commit
f021eaad20
@ -1,42 +1,62 @@
|
||||
// import 'package:flutter/material.dart';
|
||||
// import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||
// import 'package:project_telephony/utils/headers.dart';
|
||||
//
|
||||
// class UpdateDialog extends Dialog {
|
||||
// @override
|
||||
// Widget build(BuildContext context) {
|
||||
// final String upDateContent;
|
||||
// final bool isForce;
|
||||
// return Center(
|
||||
// child: Column(
|
||||
// mainAxisAlignment: MainAxisAlignment.center,
|
||||
// children: [
|
||||
// SizedBox(
|
||||
// width: 640.w,
|
||||
// height: 740.w,
|
||||
// child: Stack(
|
||||
// children: [
|
||||
// Image.asset(
|
||||
// Assets.images.cardbg.path,
|
||||
// fit: BoxFit.cover,
|
||||
// ),
|
||||
// Container(
|
||||
// child: Column(
|
||||
// children: [
|
||||
// Container(
|
||||
// child: Text(
|
||||
// "发现新版本",
|
||||
// style: TextStyle(fontSize: 32.w,color: Colors.),
|
||||
// ),
|
||||
// )
|
||||
// ],
|
||||
// ),
|
||||
// )
|
||||
// ],
|
||||
// ),
|
||||
// )
|
||||
// ],
|
||||
// ),
|
||||
// );
|
||||
// import 'dart:async';
|
||||
// import 'dart:ui';
|
||||
//
|
||||
//
|
||||
// import 'package:flutter_update_dialog/flutter_update_dialog.dart';
|
||||
//
|
||||
// import '../../utils/toast/cloud_toast.dart';
|
||||
//
|
||||
// UpdateDialog? dialog;
|
||||
//
|
||||
// double progress = 0.0;
|
||||
//
|
||||
// void onUpdate() {
|
||||
// CloudToast.show('开始升级...');
|
||||
// Timer.periodic(const Duration(milliseconds: 50), (Timer timer) {
|
||||
// progress = progress + 0.02;
|
||||
// if (progress > 1.0001) {
|
||||
// timer.cancel();
|
||||
// dialog!.dismiss();
|
||||
// progress = 0;
|
||||
// CloudToast.show('升级成功!');
|
||||
// } else {
|
||||
// dialog!.update(progress);
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
//
|
||||
// void defaultStyle() {
|
||||
// if (dialog != null && dialog!.isShowing()) {
|
||||
// return;
|
||||
// }
|
||||
// dialog = UpdateDialog.showUpdate(context,
|
||||
// title: '是否升级到4.1.4版本?',
|
||||
// updateContent: '新版本大小:2.0M\n1.xxxxxxx\n2.xxxxxxx\n3.xxxxxxx',
|
||||
// onUpdate: onUpdate);
|
||||
// }
|
||||
//
|
||||
// void customStyle() {
|
||||
// if (dialog != null && dialog!.isShowing()) {
|
||||
// return;
|
||||
// }
|
||||
// dialog = UpdateDialog.showUpdate(context,
|
||||
// width: 250,
|
||||
// title: '是否升级到4.1.4版本?',
|
||||
// updateContent: '新版本大小:2.0M\n1.xxxxxxx\n2.xxxxxxx\n3.xxxxxxx',
|
||||
// titleTextSize: 14,
|
||||
// contentTextSize: 12,
|
||||
// buttonTextSize: 12,
|
||||
// topImage: Image.asset('assets/bg_update_top.png'),
|
||||
// extraHeight: 5,
|
||||
// radius: 8,
|
||||
// themeColor: const Color(0xFFFFAC5D),
|
||||
// progressBackgroundColor: const Color(0x5AFFAC5D),
|
||||
// isForce: true,
|
||||
// updateButtonText: '升级',
|
||||
// ignoreButtonText: '忽略此版本',
|
||||
// enableIgnore: true, onIgnore: () {
|
||||
// CloudToast.show('忽略');
|
||||
// dialog!.dismiss();
|
||||
// }, onUpdate: onUpdate);
|
||||
// }
|
||||
// }
|
Loading…
Reference in new issue