# Conflicts:
#	lib/ui/widget/appdialog.dart
master
王亚玲 2 years ago
commit f8dcd30b2e

@ -8,40 +8,40 @@ import '../../utils/toast/cloud_toast.dart';
class AppDialog extends Dialog { class AppDialog extends Dialog {
final String title; final String title;
final String confirm; // final String confirm; //
// final String content; //
// final bool? showCancel;
// final OnDialogClickListener? clickListener;
const AppDialog( // this.showCancel, const AppDialog({
// this.clickListener,
{
Key? key, Key? key,
this.title = "恭喜您获得会员体验卡", this.title = "恭喜您获得会员体验卡",
this.confirm = "立即领取", this.confirm = "立即领取",
// this.content = "内容",
}) : super(key: key); }) : super(key: key);
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Container( return Center(
margin: EdgeInsets.symmetric(horizontal: 95.w, vertical: 452.w), child: Container(
margin: EdgeInsets.only(
left: 100.w,
right: 100.w,
),
decoration: BoxDecoration( decoration: BoxDecoration(
image: DecorationImage( image: DecorationImage(
image: AssetImage( image: AssetImage(
Assets.images.bouncedbg.path, Assets.images.bouncedbg.path,
))), ),
),
),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
32.hb,
Text( Text(
title, title,
style: TextStyle( style: TextStyle(
fontSize: 36.sp, fontSize: 36.sp,
), ),
), ),
80.hb, 60.hb,
_getVip(), _getVip(),
218.hb, 200.hb,
Row( Row(
children: [ children: [
72.wb, 72.wb,
@ -56,42 +56,8 @@ class AppDialog extends Dialog {
_getBotton(confirm, context), _getBotton(confirm, context),
], ],
), ),
),
); );
/**/
//
// Stack(
// children: [
// Align(
// child: Image.asset(
// Assets.images.bouncedbg.path,
// width: 560.w,
// height: 720.w,
// fit: BoxFit.fill,
// ),
// ),
// Positioned(
// top: 64.w,
// left: 100.w,
// child: Text(
// title,
// style: TextStyle(
// fontSize: 36.sp,
// ),
// )),
// Positioned(top: 108.w, left: 96.w, child: _getVip()),
// Positioned(
// child: Row(
// children: [
// _getText("接听发送"),
// 64.wb,
// _getText("拒接发送"),
// 64.wb,
// _getText("提升形象"),
// ],
// )),
// Positioned(child: _getBotton(confirm, context)),
// ],
// );
} }
} }
@ -100,11 +66,7 @@ _getBotton(String bContent, context) {
onTap: () async { onTap: () async {
var res = await apiClient.request(API.app.trialVip); var res = await apiClient.request(API.app.trialVip);
if (res.code == 0) { if (res.code == 0) {
// showDialog(context: context, builder: (context){
// return const AppDialog();
// });
CloudToast.show(res.msg); CloudToast.show(res.msg);
// BoxShadow.show(res.msg);
} else { } else {
CloudToast.show(res.msg); CloudToast.show(res.msg);
Navigator.pop(context); Navigator.pop(context);
@ -112,14 +74,17 @@ _getBotton(String bContent, context) {
}, },
child: Container( child: Container(
margin: EdgeInsets.symmetric(horizontal: 64.w), margin: EdgeInsets.symmetric(horizontal: 64.w),
padding: EdgeInsets.symmetric(horizontal: 155.w, vertical: 28.w), width: 500.w,
height: 88.w, height: 88.w,
alignment: Alignment.center,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12.w), borderRadius: BorderRadius.circular(12.w),
gradient: const LinearGradient( gradient: const LinearGradient(
colors: [Color(0xFFFFEAB0), Color(0xFFFFF6D8)], colors: [Color(0xFFFFEAB0), Color(0xFFFFF6D8)],
end: Alignment.centerLeft, end: Alignment.centerLeft,
begin: Alignment.centerRight)), begin: Alignment.centerRight,
),
),
child: Text( child: Text(
bContent, bContent,
style: TextStyle(fontSize: 28.sp, fontWeight: FontWeight.bold), style: TextStyle(fontSize: 28.sp, fontWeight: FontWeight.bold),
@ -138,14 +103,16 @@ _getText(String content) {
_getVip() { _getVip() {
return SizedBox( return SizedBox(
width: 370.w, width: 370.w,
height: 100.w, height: 110.w,
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Row( Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Text.rich(TextSpan(children: [ Text.rich(
TextSpan(
children: [
TextSpan( TextSpan(
text: "03", text: "03",
style: TextStyle( style: TextStyle(
@ -158,9 +125,11 @@ _getVip() {
style: TextStyle( style: TextStyle(
color: const Color(0xFFFFEAB0), color: const Color(0xFFFFEAB0),
fontSize: 24.sp, fontSize: 24.sp,
// height: 1.0, ),
)) ),
])), ],
),
),
const Spacer(), const Spacer(),
Column( Column(
children: [ children: [
@ -170,10 +139,11 @@ _getVip() {
color: const Color(0xFFE7F3FF), color: const Color(0xFFE7F3FF),
fontSize: 32.sp, fontSize: 32.sp,
fontFamily: "BlackItalic", fontFamily: "BlackItalic",
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold,
) ),
),
], ],
) ),
], ],
), ),
Text( Text(
@ -182,14 +152,8 @@ _getVip() {
color: const Color(0xFFFFEAB0), color: const Color(0xFFFFEAB0),
fontSize: 24.sp, fontSize: 24.sp,
), ),
) ),
], ],
), ),
); );
} }
// abstract class OnDialogClickListener {
// void onConfirm();
//
// void onCancel();
// }

Loading…
Cancel
Save