|
|
|
@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
|
|
|
|
import 'package:project_telephony/ui/exclude/exclude_contacts_page.dart';
|
|
|
|
|
import 'package:project_telephony/ui/home/home_page.dart';
|
|
|
|
|
import 'package:project_telephony/ui/home/set/phone_num_list/call_records_list.dart';
|
|
|
|
|
import 'package:project_telephony/utils/headers.dart';
|
|
|
|
|
import 'package:project_telephony/ui/widget/plone_bottom.dart';
|
|
|
|
|
|
|
|
|
@ -28,35 +29,7 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Scaffold(
|
|
|
|
|
appBar: AppBar(
|
|
|
|
|
elevation: 0,
|
|
|
|
|
title: Text(
|
|
|
|
|
'发送号码设置',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: BaseStyle.fontSize34,
|
|
|
|
|
color: BaseStyle.color333333,
|
|
|
|
|
fontWeight: FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
titleSpacing: 162.w,
|
|
|
|
|
leading: const CloudBackButton(isSpecial: true),
|
|
|
|
|
backgroundColor: kForeGroundColor),
|
|
|
|
|
backgroundColor: kForeGroundColor,
|
|
|
|
|
body: EasyRefresh(
|
|
|
|
|
firstRefresh: true,
|
|
|
|
|
controller: _refreshController,
|
|
|
|
|
header: MaterialHeader(),
|
|
|
|
|
// footer: MaterialFooter(),
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
// await userProvider.updateUserInfo();
|
|
|
|
|
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
child: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
_getNullList(),
|
|
|
|
|
PloneBottom(
|
|
|
|
|
onTap: () {
|
|
|
|
|
return ScaffoldThemeWidget(title: "发送号码设置", bottom: '添加', onTap: () {
|
|
|
|
|
showModalBottomSheet(
|
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
@ -81,11 +54,8 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
|
|
|
|
|
title: '从通话记录添加',
|
|
|
|
|
isBorder: true,
|
|
|
|
|
isOpacity: false,
|
|
|
|
|
child: Container(
|
|
|
|
|
width: 100.w,
|
|
|
|
|
height: 100.w,
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
),
|
|
|
|
|
onTap: () { },
|
|
|
|
|
child: const CallRecordsList()
|
|
|
|
|
));
|
|
|
|
|
}),
|
|
|
|
|
_getAddPhone("通迅录添加", "通过本机通讯录添加号码", () {
|
|
|
|
@ -113,14 +83,171 @@ class _SpecifyPhonePageState extends State<SpecifyPhonePage> {
|
|
|
|
|
},
|
|
|
|
|
context: context);
|
|
|
|
|
},
|
|
|
|
|
border: true,
|
|
|
|
|
color2: const Color(0xFF74BCFF),
|
|
|
|
|
color1: const Color(0xFF1890FF),
|
|
|
|
|
text: "添加",
|
|
|
|
|
),
|
|
|
|
|
child: EasyRefresh(
|
|
|
|
|
firstRefresh: true,
|
|
|
|
|
controller: _refreshController,
|
|
|
|
|
header: MaterialHeader(),
|
|
|
|
|
// footer: MaterialFooter(),
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
// await userProvider.updateUserInfo();
|
|
|
|
|
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
child: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
_getNullList(),
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
);
|
|
|
|
|
)),);
|
|
|
|
|
// PloneBottom(
|
|
|
|
|
// onTap: () {
|
|
|
|
|
// showModalBottomSheet(
|
|
|
|
|
// builder: (BuildContext context) {
|
|
|
|
|
// return Container(
|
|
|
|
|
// width: double.infinity,
|
|
|
|
|
// height: 750.w,
|
|
|
|
|
// padding: EdgeInsets.symmetric(horizontal: 32.w),
|
|
|
|
|
// child: Column(
|
|
|
|
|
// children: [
|
|
|
|
|
// 48.hb,
|
|
|
|
|
// Text(
|
|
|
|
|
// "添加号码",
|
|
|
|
|
// style: TextStyle(
|
|
|
|
|
// fontSize: 34.w,
|
|
|
|
|
// fontWeight: FontWeight.bold),
|
|
|
|
|
// ),
|
|
|
|
|
// Expanded(
|
|
|
|
|
// child: ListView(
|
|
|
|
|
// children: [
|
|
|
|
|
// _getAddPhone("通话记录添加", "通过本机通话记录添加号码", () {
|
|
|
|
|
// Get.to(() => ScaffoldThemeWidget(
|
|
|
|
|
// bottom: '添加',
|
|
|
|
|
// title: '从通话记录添加',
|
|
|
|
|
// isBorder: true,
|
|
|
|
|
// isOpacity: false,
|
|
|
|
|
// onTap: () { },
|
|
|
|
|
// child: CallRecordsList()
|
|
|
|
|
// ));
|
|
|
|
|
// }),
|
|
|
|
|
// _getAddPhone("通迅录添加", "通过本机通讯录添加号码", () {
|
|
|
|
|
// Get.to(() => (const ExcludeContactsPage()));
|
|
|
|
|
// }),
|
|
|
|
|
// _getAddPhone(
|
|
|
|
|
// "添加单个或批量号码", "通过输入号码段添加批量号码", () {}),
|
|
|
|
|
// ],
|
|
|
|
|
// )),
|
|
|
|
|
// PloneBottom(
|
|
|
|
|
// onTap: () {
|
|
|
|
|
// Navigator.pop(context);
|
|
|
|
|
// },
|
|
|
|
|
// hPadding: 32,
|
|
|
|
|
// border: true,
|
|
|
|
|
// textColor: const Color(0xFF1890FF),
|
|
|
|
|
// color2: const Color(0xFFF9F9F9),
|
|
|
|
|
// color1: const Color(0xFFF9F9F9),
|
|
|
|
|
// text: "取消",
|
|
|
|
|
// ),
|
|
|
|
|
// 32.hb
|
|
|
|
|
// ],
|
|
|
|
|
// ),
|
|
|
|
|
// );
|
|
|
|
|
// },
|
|
|
|
|
// context: context);
|
|
|
|
|
// },
|
|
|
|
|
// border: true,
|
|
|
|
|
// color2: const Color(0xFF74BCFF),
|
|
|
|
|
// color1: const Color(0xFF1890FF),
|
|
|
|
|
// text: "添加",
|
|
|
|
|
// ),
|
|
|
|
|
// Scaffold(
|
|
|
|
|
// appBar: AppBar(
|
|
|
|
|
// elevation: 0,
|
|
|
|
|
// title: Text(
|
|
|
|
|
// '发送号码设置',
|
|
|
|
|
// style: TextStyle(
|
|
|
|
|
// fontSize: BaseStyle.fontSize34,
|
|
|
|
|
// color: BaseStyle.color333333,
|
|
|
|
|
// fontWeight: FontWeight.bold),
|
|
|
|
|
// ),
|
|
|
|
|
// titleSpacing: 162.w,
|
|
|
|
|
// leading: const CloudBackButton(isSpecial: true),
|
|
|
|
|
// backgroundColor: kForeGroundColor),
|
|
|
|
|
// backgroundColor: kForeGroundColor,
|
|
|
|
|
// body: EasyRefresh(
|
|
|
|
|
// firstRefresh: true,
|
|
|
|
|
// controller: _refreshController,
|
|
|
|
|
// header: MaterialHeader(),
|
|
|
|
|
// // footer: MaterialFooter(),
|
|
|
|
|
// onRefresh: () async {
|
|
|
|
|
// // await userProvider.updateUserInfo();
|
|
|
|
|
//
|
|
|
|
|
// setState(() {});
|
|
|
|
|
// },
|
|
|
|
|
// child: ListView(
|
|
|
|
|
// children: [
|
|
|
|
|
// _getNullList(),
|
|
|
|
|
// PloneBottom(
|
|
|
|
|
// onTap: () {
|
|
|
|
|
// showModalBottomSheet(
|
|
|
|
|
// builder: (BuildContext context) {
|
|
|
|
|
// return Container(
|
|
|
|
|
// width: double.infinity,
|
|
|
|
|
// height: 750.w,
|
|
|
|
|
// padding: EdgeInsets.symmetric(horizontal: 32.w),
|
|
|
|
|
// child: Column(
|
|
|
|
|
// children: [
|
|
|
|
|
// 48.hb,
|
|
|
|
|
// Text(
|
|
|
|
|
// "添加号码",
|
|
|
|
|
// style: TextStyle(
|
|
|
|
|
// fontSize: 34.w,
|
|
|
|
|
// fontWeight: FontWeight.bold),
|
|
|
|
|
// ),
|
|
|
|
|
// Expanded(
|
|
|
|
|
// child: ListView(
|
|
|
|
|
// children: [
|
|
|
|
|
// _getAddPhone("通话记录添加", "通过本机通话记录添加号码", () {
|
|
|
|
|
// Get.to(() => const ScaffoldThemeWidget(
|
|
|
|
|
// bottom: '添加',
|
|
|
|
|
// title: '从通话记录添加',
|
|
|
|
|
// isBorder: true,
|
|
|
|
|
// isOpacity: false,
|
|
|
|
|
// child: CallRecordsList()
|
|
|
|
|
// ));
|
|
|
|
|
// }),
|
|
|
|
|
// _getAddPhone("通迅录添加", "通过本机通讯录添加号码", () {
|
|
|
|
|
// Get.to(() => (const ExcludeContactsPage()));
|
|
|
|
|
// }),
|
|
|
|
|
// _getAddPhone(
|
|
|
|
|
// "添加单个或批量号码", "通过输入号码段添加批量号码", () {}),
|
|
|
|
|
// ],
|
|
|
|
|
// )),
|
|
|
|
|
// PloneBottom(
|
|
|
|
|
// onTap: () {
|
|
|
|
|
// Navigator.pop(context);
|
|
|
|
|
// },
|
|
|
|
|
// hPadding: 32,
|
|
|
|
|
// border: true,
|
|
|
|
|
// textColor: const Color(0xFF1890FF),
|
|
|
|
|
// color2: const Color(0xFFF9F9F9),
|
|
|
|
|
// color1: const Color(0xFFF9F9F9),
|
|
|
|
|
// text: "取消",
|
|
|
|
|
// ),
|
|
|
|
|
// 32.hb
|
|
|
|
|
// ],
|
|
|
|
|
// ),
|
|
|
|
|
// );
|
|
|
|
|
// },
|
|
|
|
|
// context: context);
|
|
|
|
|
// },
|
|
|
|
|
// border: true,
|
|
|
|
|
// color2: const Color(0xFF74BCFF),
|
|
|
|
|
// color1: const Color(0xFF1890FF),
|
|
|
|
|
// text: "添加",
|
|
|
|
|
// ),
|
|
|
|
|
// ],
|
|
|
|
|
// )),
|
|
|
|
|
// );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_getAddPhone(String title, String text, VoidCallback widget) {
|
|
|
|
|