短信帮手

dyb
王亚玲 3 years ago
parent a034c5c9f5
commit 53e05e0f62

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 11 KiB

@ -6,6 +6,7 @@ import 'package:flutter_background_service/flutter_background_service.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get_navigation/src/root/get_material_app.dart'; import 'package:get/get_navigation/src/root/get_material_app.dart';
import 'package:project_telephony/ui/login/login_page.dart'; import 'package:project_telephony/ui/login/login_page.dart';
import 'package:project_telephony/ui/tab_navigator.dart';
import 'package:telephony/telephony.dart'; import 'package:telephony/telephony.dart';
@ -13,13 +14,13 @@ onBackgroundMessage(SmsMessage message) {
debugPrint("onBackgroundMessage called"); debugPrint("onBackgroundMessage called");
} }
Future<void> main() async { void main() async {
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
await initializeService(); await initializeService();
runApp(const MyApp()); runApp(const MyApp());
SystemUiOverlayStyle systemUiOverlayStyle = const SystemUiOverlayStyle( // SystemUiOverlayStyle systemUiOverlayStyle = const SystemUiOverlayStyle(
statusBarColor: Colors.transparent, // // statusBarColor: Colors.transparent, //
statusBarIconBrightness: Brightness.dark); // // statusBarIconBrightness: Brightness.dark); //
} }
Future<void> initializeService() async { Future<void> initializeService() async {
@ -135,7 +136,7 @@ class _MyAppState extends State<MyApp> {
child: GetMaterialApp( child: GetMaterialApp(
// get.testmode=true, // get.testmode=true,
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
home: LoginPage(), home: TabNavigator(),
// supportedLocales: [Locale('zh')], // supportedLocales: [Locale('zh')],
// locale: Locale('zh'), // locale: Locale('zh'),
// builder: ( context,child){ // builder: ( context,child){

@ -5,40 +5,110 @@ import '../../base/base_style.dart';
import '../widget/plone_back_button.dart'; import '../widget/plone_back_button.dart';
import '../widget/plone_bottom.dart'; import '../widget/plone_bottom.dart';
typedef TextCallback = Function(String textContent);
class ContentDetailsPage extends StatefulWidget { class ContentDetailsPage extends StatefulWidget {
const ContentDetailsPage({Key? key}) : super(key: key); final TextCallback ploneBack;
final String content;
const ContentDetailsPage(
{Key? key, required this.content, required this.ploneBack})
: super(key: key);
@override @override
_ContentDetailsPageState createState() => _ContentDetailsPageState(); _ContentDetailsPageState createState() => _ContentDetailsPageState();
} }
String content = "";
class _ContentDetailsPageState extends State<ContentDetailsPage> { class _ContentDetailsPageState extends State<ContentDetailsPage> {
late TextEditingController _controller;
@override
void initState() {
super.initState();
_controller = TextEditingController(text: widget.content);
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
resizeToAvoidBottomInset: false,
appBar: AppBar( appBar: AppBar(
title: Text( elevation: 0,
'选择短信内容', title: Text(
style: Theme.of(context).textTheme.headline6, '编辑短信内容',
), style: TextStyle(
leading: const CloudBackButton(isSpecial: true), fontSize: BaseStyle.fontSize34,
backgroundColor: kForeGroundColor color: BaseStyle.color333333,
), fontWeight: FontWeight.bold),
),
titleSpacing: 162.w,
leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor),
backgroundColor: Colors.white,
body: _getBox(), body: _getBox(),
); );
} }
_getBox(){
_getBox() {
return Column(children: [ return Column(children: [
Container( Container(
width: 622.w, width: 622.w,
height: 960.w, height: 960.w,
decoration: BoxDecoration(color: BaseStyle.colorcccccc,borderRadius: BorderRadius.circular(16)), decoration: BoxDecoration(
margin: EdgeInsets.only(left: 32.w,right: 32.w,top: 32.w,bottom: 298.w), color: const Color(0xFFF9F9F9),
child: const Text('请输入短信内容'),), borderRadius: BorderRadius.circular(16.w)),
PloneBottom(onTap: (){ margin: EdgeInsets.only(top: 32.w, bottom: 298.w),
child: Container(
// color: kForeGroundColor,
margin: EdgeInsets.symmetric(horizontal: 40.w, vertical: 50.w),
child: TextField(
maxLines: 100,
keyboardType: TextInputType.text,
onEditingComplete: () {
setState(() {});
// _refreshController.callRefresh();
},
onChanged: (text) {
content = text;
print(content);
setState(() {});
},
style: TextStyle(
color: BaseStyle.color333333,
fontSize: BaseStyle.fontSize28,
),
controller: _controller,
decoration: InputDecoration(
contentPadding: EdgeInsets.zero,
filled: true,
isDense: true,
fillColor: Colors.white,
hintText: widget.content != "" ? "" : "请输入短信内容",
hintStyle: TextStyle(
color: widget.content != ""
? const Color(0xFF333333)
: Colors.grey.shade500,
fontSize: 28.sp,
fontWeight: FontWeight.bold),
border: InputBorder.none,
),
),
),
},text: "保存",) // Text(widget.content,),
),
PloneBottom(
border: !content.isNotEmpty,
opacity: content.isNotEmpty ? 1 : 0.4,
onTap: () {
setState(() {});
widget.ploneBack(content);
Get.back();
// print(content);
},
text: "保存",
)
]); ]);
} }
} }

@ -1,22 +1,28 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:project_telephony/base/base_style.dart'; import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/ui/home/content_details_page.dart'; import 'package:project_telephony/ui/home/content_details_page.dart';
import 'package:project_telephony/ui/widget/centertipsalterwidget.dart';
import 'package:project_telephony/ui/widget/plone_back_button.dart'; import 'package:project_telephony/ui/widget/plone_back_button.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
class ContentPage extends StatefulWidget { class ContentPage extends StatefulWidget {
const ContentPage({Key? key}) : super(key: key); final bool? isAnswer; //truefalse
const ContentPage({Key? key, required this.isAnswer}) : super(key: key);
@override @override
_ContentPageState createState() => _ContentPageState(); _ContentPageState createState() => _ContentPageState();
} }
class _ContentPageState extends State<ContentPage> { class _ContentPageState extends State<ContentPage> {
List<String> textList = ['欢迎你的来电', '祝您生活愉快', '感谢您的来电我们会尽快处理的']; int _select = 0;
List<String> textList = ['欢迎你的来电', '祝您生活愉快', '感谢您的来电我们会尽快处理的', '自定义短信内容'];
List<String> textList1 = ['自定义短信内容'];
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
elevation: 0,
title: Text( title: Text(
'选择短信内容', '选择短信内容',
style: Theme.of(context).textTheme.headline6, style: Theme.of(context).textTheme.headline6,
@ -24,12 +30,11 @@ class _ContentPageState extends State<ContentPage> {
leading: const CloudBackButton(isSpecial: true), leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor, backgroundColor: kForeGroundColor,
), ),
backgroundColor: Colors.white,
body: Column(children: [ body: Column(children: [
Expanded( Expanded(
child: _getList(), child: _getList(),
), ),
_getBox2("自定义短信内容"),
32.hb
]), ]),
); );
} }
@ -37,50 +42,69 @@ class _ContentPageState extends State<ContentPage> {
_getList() { _getList() {
return ListView.builder( return ListView.builder(
itemBuilder: (context, index) { itemBuilder: (context, index) {
return _getBox(textList[index], index == 0); return _getBox(textList[index], index == _select, index);
}, },
itemCount: textList.length, itemCount: textList.length,
); );
} }
_getBox(String content, bool pd) { _getBox(String content, bool pd, int index) {
return Container(
width: 686.w,
height: 122.w,
margin: EdgeInsets.only(top: 32.w, left: 32.w, right: 32.w),
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 30.w),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(16),
color: pd ? Colors.blue : Colors.white,
),
child: Text(content,
style: TextStyle(
fontSize: BaseStyle.fontSize28,
color: pd ? const Color(0xFFF9F9F9) : BaseStyle.color333333)),
);
}
_getBox2(
String content,
) {
return GestureDetector( return GestureDetector(
onTap: () { onTap: () async {
Get.to(() => const ContentDetailsPage()); _select = index;
if (index != textList.length - 1) {
await Get.to(() => ContentDetailsPage(
content: content,
ploneBack: (String textContent) {
textList1.add(textContent);
},
));
} else {
await Get.to(() => ContentDetailsPage(
content: "",
ploneBack: (String textContent) {
// print("这是数据" + textContent);
textList.setAll(index, {textContent});
},
));
setState(() {});
}
// print("这是数据" + textList[_s lect]);
// print(index);
},
onLongPress: () {
setState(() {});
showDialog(
context: context,
builder: (context) {
return const Centertipsalterwidget(
desText: '你确定要删除这个短信模版吗,删除之后无法还原。',
title: '删除短信模板',
);
});
}, },
child: Container( child: Container(
width: 686.w, // width: 686.w,
height: 122.w, height: 135.w,
margin: EdgeInsets.only(top: 32.w, left: 32.w, right: 32.w), margin: EdgeInsets.only(top: 32.w, left: 64.w, right: 64.w),
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 30.w), padding: EdgeInsets.only(left: 40.w, top: 50.w),
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
color: Colors.white, color: pd
), ? widget.isAnswer!
child: Text( ? Colors.blue
content, : Color(0xFF72E4C8)
style: TextStyle( : const Color(0xFFF9F9F9),
fontSize: BaseStyle.fontSize28, color: const Color(0xFF000000)), ),
)), child: Text(
content,
style: TextStyle(
fontSize: BaseStyle.fontSize28,
color: pd ? const Color(0xFFF9F9F9) : BaseStyle.color333333,
fontWeight: FontWeight.bold),
),
),
); );
} }
} }

@ -13,32 +13,35 @@ class _HomePageState extends State<HomePage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
backgroundColor: Colors.white, backgroundColor: Colors.white,
body: Column( extendBodyBehindAppBar: true,
children: [ extendBody: true,
Container( body: SafeArea(
//margin:EdgeInsets.symmetric(horizontal: 32.w,vertical: 16.w), child: Column(
child: Image.asset( children: [
Assets.images.homeBg.path, Container(
)), child: Image.asset(
12.hb, Assets.images.homeBg.path,
_getBody(), height: 722.w,
], width: 722.w,
), )),
); _getBody(),
],
),
));
} }
_getBody() { _getBody() {
return Container( return Container(
padding: EdgeInsets.symmetric(horizontal: 32.w), padding: EdgeInsets.symmetric(horizontal: 64.w),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
"短信", "短信",
style: TextStyle( style: TextStyle(
fontSize: 64.sp, fontSize: 64.sp,
color: Colors.black, color: const Color(0xFF333333),
fontWeight: FontWeight.bold), fontWeight: FontWeight.bold),
), ),
32.hb, 32.hb,
@ -59,54 +62,89 @@ class _HomePageState extends State<HomePage> {
_getContainer(String title, String text, String image, Color cl1, Color cl2) { _getContainer(String title, String text, String image, Color cl1, Color cl2) {
return GestureDetector( return GestureDetector(
onTap: () { onTap: () {
print(title); print(title);
if (title == "接听后") { if (title == "接听后") {
Get.to(() => const ContentPage()); Get.to(() => const ContentPage(
// print("接听"); isAnswer: true,
} else { ));
print("未接听"); } else {
} Get.to(() => const ContentPage(
}, isAnswer: false,
child: Container( ));
decoration: BoxDecoration( print("未接听");
borderRadius: BorderRadius.circular(16.w), }
gradient: LinearGradient( },
begin: Alignment.centerLeft, child: Stack(
end: Alignment.centerRight,
colors: [cl1, cl2])),
child: Row(
children: [ children: [
Container( Align(
width: 532.w, child: Container(
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 16.w), decoration: BoxDecoration(
child: Column( borderRadius: BorderRadius.circular(16.w),
crossAxisAlignment: CrossAxisAlignment.start, gradient: LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
colors: [cl1, cl2])),
width: 622.w,
height: 192.w,
),
),
Positioned(
child: Row(
children: [ children: [
Text(title, Container(
style: TextStyle( padding: EdgeInsets.only(
fontSize: 36.sp, left: 48.w,
color: const Color(0xFFFFFFFF), top: 35.w,
fontWeight: FontWeight.bold)), ),
24.hb, child: Column(
Text( crossAxisAlignment: CrossAxisAlignment.start,
text, children: [
style: TextStyle( Text(title,
fontSize: 28.sp, style: TextStyle(
color: const Color(0xFFFFFFFF).withOpacity(0.6)), fontSize: 36.sp,
) color: const Color(0xFFFFFFFF),
fontWeight: FontWeight.bold)),
24.hb,
Text(
text,
style: TextStyle(
fontSize: 27.sp,
color: const Color(0xFFFFFFFF).withOpacity(0.6)),
),
],
),
),
// Padding(
// padding: EdgeInsets.only(top: 40.w),
// child:
// )
], ],
), ),
), ),
45.wb, Positioned(
Image.asset( bottom: 0,
image, right: 0,
width: 108.w, child: Image.asset(
height: 66.h, image,
width: 166.w,
height: 152.w,
fit: BoxFit.fill,
),
) )
], ],
), )
), // Container(
); // decoration: BoxDecoration(
// borderRadius: BorderRadius.circular(16.w),
// gradient: LinearGradient(
// end: Alignment.centerLeft,
// begin: Alignment.centerRight,
// colors: [cl1, cl2])),
// child:
// ),
);
} }
} }

@ -3,6 +3,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:project_telephony/ui/widget/plone_back_button.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
import '../../base/base_style.dart'; import '../../base/base_style.dart';
@ -56,13 +57,10 @@ class _LoginPageState extends State<LoginPage> {
children: [ children: [
Padding( Padding(
padding: EdgeInsets.only(top: 88.w, left: 8.w), padding: EdgeInsets.only(top: 88.w, left: 8.w),
child: const Icon( child: const CloudBackButton(isSpecial: true),
CupertinoIcons.chevron_back,
color: Colors.black,
),
), ),
Padding( Padding(
padding: EdgeInsets.only(left: 239.w, top: 88.w), padding: EdgeInsets.only(left: 186.w, top: 88.w),
child: Text( child: Text(
"登录/注册", "登录/注册",
style: TextStyle( style: TextStyle(
@ -74,7 +72,7 @@ class _LoginPageState extends State<LoginPage> {
), ),
extendBody: true, extendBody: true,
body: Container( body: Container(
padding: EdgeInsets.only(left: 64.w, right: 64.w, top: 138.w), padding: EdgeInsets.only(left: 64.w, right: 64.w, top: 124.w),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
@ -91,10 +89,11 @@ class _LoginPageState extends State<LoginPage> {
style: TextStyle(fontSize: 32.sp, color: const Color(0xFF999999)), style: TextStyle(fontSize: 32.sp, color: const Color(0xFF999999)),
), ),
80.hb, 80.hb,
_phoneTFWidget(), _getBox('+86', 36),
_codeWidget(), _getBox('验证码', 32),
112.hb, 112.hb,
PloneBottom( PloneBottom(
blM: false,
onTap: () { onTap: () {
Get.to(() => const TabNavigator()); Get.to(() => const TabNavigator());
}, },
@ -107,180 +106,105 @@ class _LoginPageState extends State<LoginPage> {
), ),
); );
} }
_getBox(String text, int fontSize) {
return Container(
height: 144.w,
width: double.infinity,
padding: EdgeInsets.symmetric(vertical: 48.w),
decoration: BoxDecoration(
// color: Colors.black12,
border: Border(
bottom: BorderSide(color: const Color(0xFFE8E8E8), width: 1.w),
),
),
child: Row(children: [
SizedBox(
width: 112.w,
child: Text(
text,
style: TextStyle(
fontSize: fontSize.sp,
color: BaseStyle.color333333,
fontWeight: FontWeight.bold),
),
),
Container(
width: 2.w,
height: 48.w,
margin: EdgeInsets.symmetric(horizontal: 32.w),
color: const Color(0xFFE8E8E8),
),
_phoneTFWidget(),
]),
);
}
// //
_phoneTFWidget() { _phoneTFWidget() {
return Container( return SizedBox(
alignment: Alignment.centerLeft, // alignment: Alignment.centerLeft,
// padding: EdgeInsets.symmetric(horizontal: 72.w), // padding: EdgeInsets.symmetric(horizontal: 72.w),
height: 40 * 2.h, width: 300.w,
child: Column( height: 50.w,
mainAxisAlignment: MainAxisAlignment.start, child: TextField(
children: <Widget>[ maxLength: 11,
Expanded( inputFormatters: [FilteringTextInputFormatter.allow(RegExp(r'[0-9]'))],
child: Row( textCapitalization: TextCapitalization.none,
mainAxisAlignment: MainAxisAlignment.start, decoration: InputDecoration(
children: <Widget>[ contentPadding: EdgeInsets.only(bottom: 20.w),
Expanded( border: InputBorder.none,
child: TextField( counterText: "",
onChanged: (String phone) { //textfieldiOSplaceholder
// setState(() { hintText: "请输入手机号",
// if (phone.length >= 11) { //
// _getCodeEnable = true; hintStyle: TextStyle(color: Colors.black12),
// } else { ),
// _getCodeEnable = false;
// }
// if (kDebugMode) {
// //print(_loginEnable);
// }
// });
},
// enabled: false,
controller: _phoneController,
// focusNode: _phoneFocusNode,
keyboardType: TextInputType.number,
style: TextStyle(
fontSize: 36.sp, color: const Color(0xFF999999)),
inputFormatters: [
LengthLimitingTextInputFormatter(11),
],
cursorColor: Colors.black,
decoration: InputDecoration(
// contentPadding: EdgeInsets.only(
// left: rSize(10), top: rSize(13)),
// prefixIcon: Container(
// // padding: EdgeInsets.only(right: 10.w),
// width: 50.w,
// alignment: Alignment.centerLeft,
// child: Text(
// "+86",
// style: TextStyle(
// fontSize: 32.sp,
// color: const Color(0xFF000000)),
// ),
// ),
prefixText: "+86",
prefixStyle: TextStyle(
color: Colors.black,
),
enabledBorder: const UnderlineInputBorder(
//
borderSide: BorderSide(
color: Color(0xffdddddd),
),
),
// focusedBorder: const UnderlineInputBorder( //
// borderSide: BorderSide(
// color: Color(0x19000000)
// ),
// ),
//border: InputBorder.none,
hintText:
"请输入手机号", // hintText: _phone.replaceFirst(RegExp(r'\d{4}'), '****', 3),
hintStyle: TextStyle(
color: const Color(0xFFCCCCCC), fontSize: 32.sp),
suffixIcon: GestureDetector(
onTap: () {},
// onTap: !_getCodeEnable
// ? () {}
// : () async {
// // await apiClient
// // .request(API.login.phoneCode, data: {
// // 'phone':
// // UserTool.userProvider.userInfo.phone,
// // });
// _beginCountDown();
// if (_cantSelected) return;
// _cantSelected = true;
// Future.delayed(const Duration(seconds: 1),
// () {
// _cantSelected = false;
// });
// },
child: Container(
width: 180.w,
alignment: Alignment.centerRight,
color: Colors.transparent,
child: const Text("获取验证码"
// _countDownStr,
// style: TextStyle(
// color: _getCodeEnable
// ? kPrimaryColor
// : BaseStyle.colorcccccc),
),
),
)),
),
),
],
),
),
//_bottomLineWidget(),
],
), ),
); );
} }
// //
_codeWidget() { _codeWidget() {
return Container( return SizedBox(
alignment: Alignment.centerLeft, width: 300.w,
//margin: EdgeInsets.symmetric(horizontal: 20.w), height: 50.w,
// padding: EdgeInsets.symmetric(horizontal: 72.w), child: TextField(
height: 40 * 2.h, onChanged: (String phone) {
child: Column( setState(() {});
mainAxisAlignment: MainAxisAlignment.start, },
children: <Widget>[ controller: _smsCodeController,
Expanded( // focusNode: _smsCodeFocusNode,
child: Row( keyboardType: TextInputType.number,
mainAxisAlignment: MainAxisAlignment.start, style: TextStyle(fontSize: 36.sp, color: BaseStyle.color999999),
children: <Widget>[ inputFormatters: [
Expanded( LengthLimitingTextInputFormatter(4),
child: TextField( ],
onChanged: (String phone) { cursorColor: Colors.black,
setState(() {}); decoration: InputDecoration(
}, // prefixIcon: Container(
controller: _smsCodeController, // width: 10.w,
// focusNode: _smsCodeFocusNode, // alignment: Alignment.centerLeft,
keyboardType: TextInputType.number, // child: Text(
style: TextStyle( // "验证码",
fontSize: 36.sp, color: BaseStyle.color999999), // style: TextStyle(
inputFormatters: [ // fontSize: 32.sp,
LengthLimitingTextInputFormatter(4), // color: const Color(0xFF000000)),
], // ),
cursorColor: Colors.black, // ),
decoration: InputDecoration( prefixText: "验证码",
// prefixIcon: Container( prefixStyle: const TextStyle(
// width: 10.w, color: Colors.black,
// alignment: Alignment.centerLeft,
// child: Text(
// "验证码",
// style: TextStyle(
// fontSize: 32.sp,
// color: const Color(0xFF000000)),
// ),
// ),
prefixText: "验证码",
prefixStyle: const TextStyle(
color: Colors.black,
),
enabledBorder: const UnderlineInputBorder(
//
borderSide: BorderSide(
color: BaseStyle.color999999,
),
),
hintText: "请输入验证码",
hintStyle: TextStyle(
color: BaseStyle.colorcccccc, fontSize: 36.sp),
)),
),
],
), ),
), enabledBorder: const UnderlineInputBorder(
//_bottomLineWidget(), //
], borderSide: BorderSide(
), color: BaseStyle.color999999,
),
),
hintText: "请输入验证码",
hintStyle: TextStyle(color: BaseStyle.colorcccccc, fontSize: 36.sp),
)),
); );
} }

@ -1,118 +1,95 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:project_telephony/base/base_style.dart'; import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/ui/widget/check_radio.dart'; import 'package:project_telephony/ui/widget/check_radio.dart';
// import 'package:project_telephony/ui/widget/check_radio.dart';
import 'package:project_telephony/ui/widget/plone_back_button.dart'; import 'package:project_telephony/ui/widget/plone_back_button.dart';
import 'package:project_telephony/ui/widget/plone_bottom.dart'; import 'package:project_telephony/ui/widget/plone_bottom.dart';
import 'package:project_telephony/ui/widget/putup_widget.dart'; import 'package:project_telephony/ui/widget/putup_widget.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
class MembersPage extends StatelessWidget { class MembersPage extends StatefulWidget {
MembersPage({Key? key}) : super(key: key); const MembersPage({Key? key}) : super(key: key);
ChooseItems? _chooseItem;
List<dynamic>? data; @override
final List<ChooseItems> _piceList = [ _MembersPageState createState() => _MembersPageState();
ChooseItems( }
month: 12,
pice: 10, ChooseItems? _chooseItem;
), List<dynamic>? data;
ChooseItems( final List<ChooseItems> _piceList = [
month: 1, ChooseItems(
pice: 1, month: 12,
), pice: 10,
]; ),
int _selectIndex = 0; ChooseItems(
List payWay = [ month: 1,
{ pice: 1,
'payName': '微信支付', ),
'payUrl': Assets.icons.weixin.path, ];
}, int _selectIndex = 0;
{'payName': '支付宝支付', 'payUrl': Assets.icons.zhifubao.path} List payWay = [
]; {
'payName': '微信支付',
'payUrl': Assets.icons.weixin.path,
},
{'payName': '支付宝支付', 'payUrl': Assets.icons.zhifubao.path}
];
class _MembersPageState extends State<MembersPage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: Stack( body: Stack(
children: [ children: [
Align( Align(
child: SizedBox( child: SizedBox(
width: 750.w,
height: 1624.w,
),
),
Positioned(
child: Image.asset(
Assets.images.vipbg.path,
)),
Positioned(top: 256.w, left: 32.w, child: _getBanner()),
Positioned(
top: 480.w,
child: Container(
height: 1208.w,
width: 750.w, width: 750.w,
decoration: const BoxDecoration( height: 1624.w,
color: Colors.white, ),
borderRadius: BorderRadius.only( ),
topLeft: Radius.circular(20), Positioned(
topRight: Radius.circular(20))), child: Image.asset(
child: Column(children: [ Assets.images.vipbg.path,
_getRecharge(), )),
_getSpay(payWay), Positioned(top: 256.w, left: 32.w, child: _getBanner()),
PloneBottom( Positioned(
border: true, top: 480.w,
onTap: () {}, child: Container(
textColor: const Color(0xFF333333), height: 1208.w,
text: "立即开通", width: 750.w,
color1: const Color(0xFFFFF6D8), decoration: const BoxDecoration(
color2: const Color(0xFFFFEAB0), color: Colors.white,
) borderRadius: BorderRadius.only(
]), topLeft: Radius.circular(20),
)), topRight: Radius.circular(20))),
Positioned( child: Column(children: [
top: 68.w, _getRecharge(),
child: Row( _getSpay(payWay),
children: [ PloneBottom(
const CloudBackButton( border: true,
isSpecial: true, onTap: () {},
), textColor: const Color(0xFF333333),
154.wb, text: "立即开通",
Text('会员中心', style: Theme.of(context).textTheme.headline6), color1: const Color(0xFFFFF6D8),
], color2: const Color(0xFFFFEAB0),
)), )
], ]),
)); )),
Positioned(
top: 68.w,
child: Row(
children: [
const CloudBackButton(
isSpecial: true,
),
154.wb,
Text('会员中心', style: Theme.of(context).textTheme.headline6),
],
)),
],
),
);
} }
// _get() {
// return Stack(
// children: [
// Align(
// child: SizedBox(
// width: 750.w,
// height: 1410.w,
// ),
// ),
// Positioned(
// child: _getBanner(),
// ),
// Positioned(
// top: 224.w,
// child: Container(
// height: 1140.w,
// width: 750.w,
// decoration: const BoxDecoration(
// color: Colors.white,
// borderRadius: BorderRadius.only(
// topLeft: Radius.circular(20),
// topRight: Radius.circular(20))),
// child: Column(children: []),
// ))
// ],
// );
// }
//banner //banner
_getBanner() { _getBanner() {
return SizedBox( return SizedBox(
@ -201,7 +178,8 @@ class MembersPage extends StatelessWidget {
mainAxisSpacing: 20.w, mainAxisSpacing: 20.w,
callback: (item, index) { callback: (item, index) {
_chooseItem = item; _chooseItem = item;
// setState(() {}); // print(_piceList[index].pice);
setState(() {});
}, },
pickItem: _chooseItem, pickItem: _chooseItem,
), ),
@ -224,7 +202,8 @@ class MembersPage extends StatelessWidget {
return GestureDetector( return GestureDetector(
onTap: () { onTap: () {
_selectIndex = index; _selectIndex = index;
// setState(() {}); // print(_selectIndex);
setState(() {});
}, },
child: Container( child: Container(
padding: EdgeInsets.symmetric(horizontal: 24.w, vertical: 40.w), padding: EdgeInsets.symmetric(horizontal: 24.w, vertical: 40.w),

@ -0,0 +1,79 @@
import 'package:flutter/material.dart';
import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/ui/widget/plone_back_button.dart';
import 'package:project_telephony/utils/headers.dart';
class PrivacyRightsPage extends StatefulWidget {
final String name;
const PrivacyRightsPage({Key? key, required this.name}) : super(key: key);
@override
_PrivacyRightsPageState createState() => _PrivacyRightsPageState();
}
class _PrivacyRightsPageState extends State<PrivacyRightsPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
elevation: 0,
title: Text(
widget.name,
style: TextStyle(
fontSize: BaseStyle.fontSize34,
color: BaseStyle.color333333,
fontWeight: FontWeight.bold),
),
titleSpacing: 162.w,
leading: const CloudBackButton(isSpecial: true),
backgroundColor: kForeGroundColor),
backgroundColor: Colors.white,
body: widget.name == "隐私政策" ? null : _getRights(true),
);
}
_getRights(bool pd) {
return GestureDetector(
onTap: () {},
child: Container(
height: 144.w,
width: 750.w,
padding: EdgeInsets.symmetric(horizontal: 64.w, vertical: 17.w),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'获取设备来电',
style: TextStyle(
fontSize: 32.sp,
color: BaseStyle.color333333,
fontWeight: FontWeight.bold),
),
16.hb,
Text('用于获取设备',
style: TextStyle(
fontSize: 28.sp, color: BaseStyle.color999999)),
],
),
269.wb,
Text(pd ? "未允许" : "已允许",
style: TextStyle(
fontSize: 24.sp,
color: pd
? const Color(0xFFFF4D4D)
: BaseStyle.color999999)),
SizedBox(
width: 48.w,
height: 48.w,
child: const Icon(
Icons.keyboard_arrow_right,
),
),
],
)),
);
}
}

@ -2,7 +2,9 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:project_telephony/base/base_style.dart'; import 'package:project_telephony/base/base_style.dart';
import 'package:project_telephony/ui/home/home_page.dart'; import 'package:project_telephony/ui/home/home_page.dart';
import 'package:project_telephony/ui/login/login_page.dart';
import 'package:project_telephony/ui/user/members_page.dart'; import 'package:project_telephony/ui/user/members_page.dart';
import 'package:project_telephony/ui/user/privacy_rights_page.dart';
import 'package:project_telephony/ui/widget/image_scaffold.dart'; import 'package:project_telephony/ui/widget/image_scaffold.dart';
import 'package:project_telephony/ui/widget/plone_bottom.dart'; import 'package:project_telephony/ui/widget/plone_bottom.dart';
import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/headers.dart';
@ -14,8 +16,12 @@ class UserPage extends StatefulWidget {
_UserPageState createState() => _UserPageState(); _UserPageState createState() => _UserPageState();
} }
@override
void initState() {}
class _UserPageState extends State<UserPage> { class _UserPageState extends State<UserPage> {
bool bl = true; bool bl = true;
bool vle = false;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return CloudScaffold( return CloudScaffold(
@ -28,13 +34,14 @@ class _UserPageState extends State<UserPage> {
extendBody: true, extendBody: true,
body: Column(children: [ body: Column(children: [
_getUser(), _getUser(),
36.hb, 72.hb,
_getBanner(), _getBanner(),
120.hb, 120.hb,
_getSwitch(Assets.icons.switch1.path, "功能开关", true), _getSwitch(Assets.icons.switch1.path, "功能开关", true),
_getSwitch(Assets.icons.privacy.path, "隐私政策", false), _getSwitch(Assets.icons.privacy.path, "隐私政策", false),
_getSwitch(Assets.icons.permissions.path, "权限说明", false), _getSwitch(Assets.icons.permissions.path, "权限说明", false),
// const Spacer(), // const Spacer(),
182.hb,
PloneBottom( PloneBottom(
border: false, border: false,
onTap: () { onTap: () {
@ -51,40 +58,46 @@ class _UserPageState extends State<UserPage> {
// //
_getUser() { _getUser() {
return Container( return GestureDetector(
margin: EdgeInsets.only(left: 32.w, right: 32.w, top: 199.w), onTap: () {
child: Row( Get.to(() => const LoginPage());
children: [ },
Column( child: Container(
children: [ margin: EdgeInsets.only(left: 64.w, right: 64.w, top: 216.w),
Text( child: Row(
bl ? "登录/注册" : "xxxxx", children: [
style: TextStyle( Column(
fontSize: BaseStyle.fontSize48, crossAxisAlignment: CrossAxisAlignment.start,
color: BaseStyle.color333333, children: [
fontWeight: FontWeight.bold), Text(
), bl ? "登录/注册" : "xxxxx",
24.hb, style: TextStyle(
Text( fontSize: BaseStyle.fontSize48,
bl ? "登录获取更多信息" : "欢迎您登录短信帮手", color: BaseStyle.color333333,
style: TextStyle( fontWeight: FontWeight.bold),
fontSize: BaseStyle.fontSize28, ),
color: BaseStyle.color333333), 24.hb,
) Text(
], bl ? "登录获取更多信息" : "欢迎您登录短信帮手",
), style: TextStyle(
const Spacer(), fontSize: BaseStyle.fontSize28,
Container( color: BaseStyle.color333333),
child: ClipOval( )
child: Image.asset( ],
Assets.images.portrait.path,
height: 128.w,
width: 128.w,
fit: BoxFit.cover,
),
), ),
) const Spacer(),
], Container(
child: ClipOval(
child: Image.asset(
Assets.images.portrait.path,
height: 128.w,
width: 128.w,
fit: BoxFit.cover,
),
),
)
],
),
), ),
); );
} }
@ -97,7 +110,7 @@ class _UserPageState extends State<UserPage> {
child: Stack(children: [ child: Stack(children: [
Align( Align(
child: SizedBox( child: SizedBox(
width: 686.w, width: 622.w,
child: Image.asset( child: Image.asset(
Assets.images.banner.path, Assets.images.banner.path,
fit: BoxFit.fill, fit: BoxFit.fill,
@ -105,7 +118,9 @@ class _UserPageState extends State<UserPage> {
)), )),
Positioned( Positioned(
child: Container( child: Container(
margin: EdgeInsets.symmetric(horizontal: 64.w, vertical: 16.w), padding: EdgeInsets.symmetric(horizontal: 112.w, vertical: 24.w),
// margin: EdgeInsets.symmetric(horizontal: 64.w, vertical: 16.w),
// padding: EdgeInsets.symmetric(),
child: Row( child: Row(
children: [_getText(), const Spacer(), _getBotton()], children: [_getText(), const Spacer(), _getBotton()],
), ),
@ -118,12 +133,12 @@ class _UserPageState extends State<UserPage> {
_getBotton() { _getBotton() {
return GestureDetector( return GestureDetector(
onTap: () { onTap: () {
Get.to(() => MembersPage()); Get.to(() => const MembersPage());
}, },
child: Container( child: Container(
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 16.w), padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 16.w),
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(30), borderRadius: BorderRadius.circular(30.w),
gradient: const LinearGradient( gradient: const LinearGradient(
colors: [Color(0xFFFFF6D8), Color(0xFFFFEAB0)], colors: [Color(0xFFFFF6D8), Color(0xFFFFEAB0)],
begin: Alignment.centerLeft, begin: Alignment.centerLeft,
@ -139,6 +154,7 @@ class _UserPageState extends State<UserPage> {
//banner //banner
_getText() { _getText() {
return Column( return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
_getVip(), _getVip(),
16.hb, 16.hb,
@ -175,29 +191,41 @@ class _UserPageState extends State<UserPage> {
// //
_getSwitch(String url, String name, bool pd) { _getSwitch(String url, String name, bool pd) {
bool vle = false; return GestureDetector(
return ListTile( onTap: () {
// onTap: (() {}), pd
leading: Image.asset( ? ""
url, : Get.to(() => PrivacyRightsPage(
height: 54.w, name: name,
width: 56.w, ));
fit: BoxFit.fill, },
), child: Container(
title: Text( padding: EdgeInsets.symmetric(horizontal: 32.w),
name, child: ListTile(
style: TextStyle( // onTap: (() {}),
color: BaseStyle.color333333, leading: Image.asset(
fontSize: BaseStyle.fontSize34, url,
fontWeight: FontWeight.bold), height: 54.w,
), width: 56.w,
trailing: pd fit: BoxFit.fill,
? Switch( ),
value: vle, title: Text(
onChanged: (value) { name,
vle = value; style: TextStyle(
// setState(() {}); color: BaseStyle.color333333,
}) fontSize: BaseStyle.fontSize34,
: const Icon(Icons.keyboard_arrow_right)); fontWeight: FontWeight.bold),
),
trailing: pd
? Switch(
value: vle,
onChanged: (value) {
setState(() {
vle = value;
});
})
: const Icon(Icons.keyboard_arrow_right)),
),
);
} }
} }

@ -0,0 +1,49 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:project_telephony/utils/headers.dart';
class Centertipsalterwidget extends StatefulWidget {
final String title;
final String desText;
const Centertipsalterwidget(
{Key? key, required this.desText, required this.title})
: super(key: key);
@override
_CentertipsalterwidgetState createState() => _CentertipsalterwidgetState();
}
class _CentertipsalterwidgetState extends State<Centertipsalterwidget> {
@override
Widget build(BuildContext context) {
return CupertinoAlertDialog(
title: Text(widget.title),
content: Column(children: [
SizedBox(
height: 10.w,
),
Align(
child: Text(widget.desText),
alignment: const Alignment(0, 0),
)
]),
actions: [
CupertinoDialogAction(
child: const Text(
'取消',
style: TextStyle(color: Color(0xFF999999)),
),
onPressed: () {
Navigator.pop(context);
},
),
CupertinoDialogAction(
child: const Text('确定'),
onPressed: () {
Navigator.pop(context);
},
)
],
);
}
}

@ -82,6 +82,7 @@ class CloudScaffold extends StatelessWidget {
? AnnotatedRegion<SystemUiOverlayStyle>( ? AnnotatedRegion<SystemUiOverlayStyle>(
value: systemStyle, value: systemStyle,
child: Scaffold( child: Scaffold(
resizeToAvoidBottomInset: false,
endDrawer: endDrawer, endDrawer: endDrawer,
backgroundColor: bodyColor, backgroundColor: bodyColor,
extendBodyBehindAppBar: extendBody, extendBodyBehindAppBar: extendBody,
@ -110,6 +111,7 @@ class CloudScaffold extends StatelessWidget {
: AnnotatedRegion<SystemUiOverlayStyle>( : AnnotatedRegion<SystemUiOverlayStyle>(
value: systemStyle, value: systemStyle,
child: Scaffold( child: Scaffold(
resizeToAvoidBottomInset: false,
endDrawer: endDrawer, endDrawer: endDrawer,
backgroundColor: bodyColor, backgroundColor: bodyColor,
extendBodyBehindAppBar: extendBody, extendBodyBehindAppBar: extendBody,

@ -11,6 +11,7 @@ class PloneBottom extends StatefulWidget {
final Function() onTap; final Function() onTap;
final bool blM; // final bool blM; //
final bool border; // final bool border; //
final double opacity;
const PloneBottom({ const PloneBottom({
Key? key, Key? key,
this.text = '返回首页', this.text = '返回首页',
@ -19,6 +20,7 @@ class PloneBottom extends StatefulWidget {
this.textColor = kForeGroundColor, this.textColor = kForeGroundColor,
this.blM = true, this.blM = true,
this.border = false, this.border = false,
this.opacity = 1,
required this.onTap, required this.onTap,
}); });
@ -34,24 +36,31 @@ class _PloneBottomState extends State<PloneBottom> {
child: Material( child: Material(
color: Colors.transparent, color: Colors.transparent,
child: Container( child: Container(
height: 84.w,
alignment: Alignment.center, alignment: Alignment.center,
padding: EdgeInsets.symmetric(vertical: 15.w), padding: EdgeInsets.symmetric(vertical: 14.w),
margin: widget.blM margin: widget.blM
? EdgeInsets.symmetric(horizontal: 32.w) ? EdgeInsets.symmetric(horizontal: 64.w)
: EdgeInsets.only(left: 0.w), : EdgeInsets.only(left: 0.w),
decoration: BoxDecoration( decoration: BoxDecoration(
border: Border.all( border: Border.all(
color: const Color(0xFF1890FF), color:
width: !widget.border ? 1.w : 10.w), !widget.border ? const Color(0xFF1890FF) : Colors.white,
width: !widget.border ? 1.w : 0.w),
gradient: LinearGradient( gradient: LinearGradient(
begin: Alignment.centerLeft, begin: Alignment.centerLeft,
end: Alignment.centerRight, end: Alignment.centerRight,
colors: [widget.color1, widget.color2]), colors: [
widget.color1.withOpacity(widget.opacity),
widget.color2.withOpacity(widget.opacity)
]),
borderRadius: BorderRadius.circular(8.w)), borderRadius: BorderRadius.circular(8.w)),
child: Text( child: Text(
widget.text, widget.text,
style: TextStyle( style: TextStyle(
fontSize: BaseStyle.fontSize28, color: widget.textColor), fontSize: BaseStyle.fontSize28,
color: widget.textColor,
fontWeight: FontWeight.bold),
), ),
), ),
), ),

@ -36,6 +36,11 @@ class SortWidget extends StatelessWidget {
required this.childAspectRatio, required this.childAspectRatio,
this.haveButton = false, this.haveButton = false,
required this.pickItem}); required this.pickItem});
// @override
// void initState() {
// super.initState();
// }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {

Loading…
Cancel
Save