|
|
|
@ -3,6 +3,7 @@ import 'package:flustars/flustars.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
import 'package:flutter_background_service/flutter_background_service.dart';
|
|
|
|
|
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
|
|
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
|
|
|
import 'package:project_telephony/base/base_style.dart';
|
|
|
|
|
import 'package:project_telephony/ui/login/login_page.dart';
|
|
|
|
@ -47,19 +48,31 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
final service = FlutterBackgroundService();
|
|
|
|
|
|
|
|
|
|
late bool vle = false;
|
|
|
|
|
// bool vle=service.isRunning() as bool;
|
|
|
|
|
|
|
|
|
|
_load() async {
|
|
|
|
|
vle = await service.isRunning();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
final EasyRefreshController _easyRefreshController = EasyRefreshController();
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
|
|
|
|
_easyRefreshController.dispose();
|
|
|
|
|
super.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
|
|
|
|
UserTool.userProvider.updateUserInfo();
|
|
|
|
|
Future.delayed(const Duration(milliseconds: 0), ()=>setState(() {
|
|
|
|
|
Future.delayed(
|
|
|
|
|
const Duration(milliseconds: 0),
|
|
|
|
|
() => setState(() {
|
|
|
|
|
if (UserTool.userProvider.isLogin) {
|
|
|
|
|
print(UserTool.userProvider.userInfo.end * 1000);
|
|
|
|
|
print(DateTime.now().millisecondsSinceEpoch);
|
|
|
|
|
if (UserTool.userProvider.userInfo.end*1000>DateTime.now().microsecondsSinceEpoch) {
|
|
|
|
|
if (UserTool.userProvider.userInfo.end * 1000 >
|
|
|
|
|
DateTime.now().microsecondsSinceEpoch) {
|
|
|
|
|
isVip = false;
|
|
|
|
|
vle = false;
|
|
|
|
|
} else {
|
|
|
|
@ -67,15 +80,13 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
_load();
|
|
|
|
|
}
|
|
|
|
|
//service.isRunning() as bool;
|
|
|
|
|
endDate=DateUtil.formatDateMs(UserTool.userProvider.userInfo.end * 1000, format: DateFormats.y_mo_d);
|
|
|
|
|
endDate = DateUtil.formatDateMs(
|
|
|
|
|
UserTool.userProvider.userInfo.end * 1000,
|
|
|
|
|
format: DateFormats.y_mo_d);
|
|
|
|
|
} else {
|
|
|
|
|
vle = false;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
// Future.delayed(const Duration(milliseconds: 0), () async {
|
|
|
|
|
//
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@ -88,8 +99,8 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
path: Assets.images.bg.path,
|
|
|
|
|
bodyColor: Colors.white,
|
|
|
|
|
extendBody: true,
|
|
|
|
|
|
|
|
|
|
body: Column(children: [
|
|
|
|
|
body: Column(
|
|
|
|
|
children: [
|
|
|
|
|
_getUser(),
|
|
|
|
|
72.hb,
|
|
|
|
|
_getBanner(),
|
|
|
|
@ -104,7 +115,6 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
? PloneBottom(
|
|
|
|
|
border: false,
|
|
|
|
|
onTap: () async {
|
|
|
|
|
|
|
|
|
|
var cancel = CloudToast.loading;
|
|
|
|
|
var base = await apiClient.request(API.app.logout,
|
|
|
|
|
showMessage: true);
|
|
|
|
@ -120,7 +130,8 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
text: "退出登录",
|
|
|
|
|
)
|
|
|
|
|
: const SizedBox()
|
|
|
|
|
]),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -140,7 +151,9 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
UserTool.userProvider.isLogin ?UserTool.userProvider.userInfo.name : "登录/注册",
|
|
|
|
|
UserTool.userProvider.isLogin
|
|
|
|
|
? UserTool.userProvider.userInfo.name
|
|
|
|
|
: "登录/注册",
|
|
|
|
|
// UserTool.userProvider.userInfo.name ,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: BaseStyle.fontSize48,
|
|
|
|
@ -168,7 +181,9 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
},
|
|
|
|
|
child: ClipOval(
|
|
|
|
|
child: Image.asset(
|
|
|
|
|
UserTool.userProvider.isLogin?Assets.images.portraitDeep.path:Assets.images.portrait.path,
|
|
|
|
|
UserTool.userProvider.isLogin
|
|
|
|
|
? Assets.images.portraitDeep.path
|
|
|
|
|
: Assets.images.portrait.path,
|
|
|
|
|
height: 128.w,
|
|
|
|
|
width: 128.w,
|
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
@ -185,7 +200,8 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
return SizedBox(
|
|
|
|
|
// margin: EdgeInsets.symmetric(horizontal: 32.w),
|
|
|
|
|
height: 144.w,
|
|
|
|
|
child: Stack(children: [
|
|
|
|
|
child: Stack(
|
|
|
|
|
children: [
|
|
|
|
|
Align(
|
|
|
|
|
child: SizedBox(
|
|
|
|
|
width: 622.w,
|
|
|
|
@ -202,17 +218,30 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [_getText(), const Spacer(), _getBotton()],
|
|
|
|
|
),
|
|
|
|
|
))
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_getRequests() async {
|
|
|
|
|
endDate = DateUtil.formatDateMs(
|
|
|
|
|
UserTool.userProvider.userInfo.end * 1000,
|
|
|
|
|
format: DateFormats.y_mo_d);
|
|
|
|
|
setState(() {});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//banner botton
|
|
|
|
|
_getBotton() {
|
|
|
|
|
return GestureDetector(
|
|
|
|
|
onTap: () {
|
|
|
|
|
if (userProvider.isLogin) {
|
|
|
|
|
Get.to(() => const MembersPage());
|
|
|
|
|
Navigator.of(context)
|
|
|
|
|
.push(
|
|
|
|
|
MaterialPageRoute(builder: (_) => const MembersPage()),
|
|
|
|
|
)
|
|
|
|
|
.then((val) => _getRequests());
|
|
|
|
|
} else {
|
|
|
|
|
BotToast.showText(text: '您还未登录,请先登录!');
|
|
|
|
|
}
|
|
|
|
@ -302,7 +331,6 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
trailing: Switch(
|
|
|
|
|
value: vle,
|
|
|
|
|
onChanged: (value) async {
|
|
|
|
|
|
|
|
|
|
final SharedPreferences prefs = await _prefs;
|
|
|
|
|
// if(!value){
|
|
|
|
|
//
|
|
|
|
@ -330,7 +358,9 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
} else {
|
|
|
|
|
prefs.remove("kg");
|
|
|
|
|
prefs.setBool("kg", vle);
|
|
|
|
|
service.invoke("stopService");///有问题??
|
|
|
|
|
service.invoke("stopService");
|
|
|
|
|
|
|
|
|
|
///有问题??
|
|
|
|
|
// exit(0);
|
|
|
|
|
// UserTool.userProvider.setKg(vle);
|
|
|
|
|
// prefs.setBool("kg", false);
|
|
|
|
@ -342,11 +372,11 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
} else {
|
|
|
|
|
BotToast.showText(text: "还没有开通会员,不可使用改功能");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}),
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_getSwitch(String url, String name, bool pd) {
|
|
|
|
|
return GestureDetector(
|
|
|
|
|
onTap: () async {
|
|
|
|
@ -354,8 +384,9 @@ class _UserPageState extends State<UserPage> {
|
|
|
|
|
switch (name) {
|
|
|
|
|
case "短信标签":
|
|
|
|
|
Get.to(() => ContentDetailsPage(
|
|
|
|
|
content:
|
|
|
|
|
UserTool.userProvider.isLogin ? UserTool.userProvider.userInfo.tag : "",
|
|
|
|
|
content: UserTool.userProvider.isLogin
|
|
|
|
|
? UserTool.userProvider.userInfo.tag
|
|
|
|
|
: "",
|
|
|
|
|
ploneBack: (String textContent) {
|
|
|
|
|
// print("这是数据" + textContent);
|
|
|
|
|
// textList.setAll(index, {textContent});
|
|
|
|
|