You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.3 KiB

3 years ago
import 'package:aku_new_community/extensions/num_ext.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
class TipsDialog {
static tipsDialog() async {
await Get.dialog(
CupertinoAlertDialog(
title: Text('功能提醒'),
content: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
20.hb,
Row(
children: [
3 years ago
Text(
'请各位住户注意:',
style: TextStyle(color: Color(0xA6000000), fontSize: 26.sp),
),
],
),
20.hb,
3 years ago
Text(
'本功能已实现,但当前小区不具备能够使用该功能使用的条件,页面内容仅供参考。',
style: TextStyle(color: Color(0xA6000000), fontSize: 26.sp),
textAlign: TextAlign.start,
),
20.hb,
],
),
actions: [
CupertinoDialogAction(
child: Text('确定'),
3 years ago
textStyle: TextStyle(color: Color(0xFF007AFF), fontSize: 28.sp),
onPressed: () => Get.back(),
),
],
),
barrierDismissible: false,
);
}
}