import 'package:flutter/material.dart'; import 'package:flutter_sms/flutter_sms.dart'; import 'package:project_telephony/base/base_style.dart'; import 'package:project_telephony/ui/TextMe/text_template.dart'; import 'package:project_telephony/ui/widget/plone_bottom.dart'; import 'package:project_telephony/utils/headers.dart'; import 'package:project_telephony/utils/toast/cloud_toast.dart'; import 'package:velocity_x/velocity_x.dart'; import '../../utils/user_tool.dart'; import '../widget/plone_back_button.dart'; import 'address_book.dart'; class TextMePage extends StatefulWidget { const TextMePage({Key? key}) : super(key: key); @override _TextMePageState createState() => _TextMePageState(); } class _TextMePageState extends State { // String contentText = ""; // String phoneText = ""; String signatureText = ""; late TextEditingController _controller; late TextEditingController _phoneController; List list = []; @override void initState() { _controller = TextEditingController(); _phoneController = TextEditingController(); _controller.text = ""; _phoneController.text = ""; /* Future.delayed(const Duration(seconds: 0),(){ if (UserTool.userProvider.isLogin) { _controller = TextEditingController(); _phoneController = TextEditingController(); _controller.text = ""; _phoneController.text = ""; } else { Get.to(() => const LoginPage()); } });*/ super.initState(); } @override Widget build(BuildContext context) { return Scaffold( resizeToAvoidBottomInset: false, appBar: AppBar( elevation: 0, title: Text( "群发短信", style: TextStyle( fontSize: BaseStyle.fontSize34, color: BaseStyle.color333333, fontWeight: FontWeight.bold), ), titleSpacing: 200.w, leading: const CloudBackButton( isSpecial: true, isSpecials: false, ), backgroundColor: kForeGroundColor), backgroundColor: Colors.white, body: ListView( children: [ _getBox('短信内容', "选择短信模版", () { Get.to(() => TextTemplate( callback: (String content) { _controller.text = content; }, )); }, "请输入短信内容...", _controller), 32.hb, _getBox('收信号码', "通讯录中选择", () { _phoneController.text=""; Get.to(() => AddressBook( number: (List content) { for (int i = 0; i < content.length; i++) { _phoneController.text += "${content[i]},"; } }, )); }, "请输入收信号码,多个号码请用逗号隔开
例如:136xxxx6666,132xxxx8888", _phoneController), 32.hb, _getBox2(), 64.hb, PloneBottom( onTap: () async { // final Telephony telephony = Telephony.instance; if(UserTool.userProvider.userInfo.isVip ==1){ if (_controller.text.isEmpty && _phoneController.text.isEmpty && signatureText.isEmpty) { CloudToast.show("内容不可为空"); } else { print(_controller.text); print(_phoneController.text); print(signatureText); await sendSMS( message: "【$signatureText】${_controller.text}", recipients: _phoneController.text.split(","), sendDirect: true); // print("asd${_phoneController.text.split(",")}"); // await telephony.sendSms( // to: "13486828191;13395740386;18815060992;18294841148", // message: "【$signatureText】${_controller.text}" // ); CloudToast.show("发送成功"); // Telephony.sendSms(to: phoneNum!, message: idle); } }else{ CloudToast.show("您还未开通会员"); } }, border: _controller.text.isEmpty || _phoneController.text.isEmpty || signatureText.isEmpty, opacity: _controller.text.isEmpty || _phoneController.text.isEmpty || signatureText.isEmpty ? 0.4 : 1, text: "发送", ) ], ), ); } _getBox(String title, String onTapText, VoidCallback onTap, String hitText, TextEditingController controller) { return Column( children: [ GestureDetector( onTap: onTap, child: Container( height: 100.w, margin: EdgeInsets.symmetric(horizontal: 64.w), child: Row( children: [ Text( title, style: TextStyle( fontSize: 28.sp, color: BaseStyle.color999999, fontWeight: FontWeight.bold), ), 290.wb, Text( onTapText, style: TextStyle( fontSize: 28.sp, color: const Color(0xFF1890FF)), ), const Icon( Icons.keyboard_arrow_right, color: Color(0xFF1890FF), ), ], ), ), ), 16.hb, Container( height: 240.w, decoration: BoxDecoration( color: const Color(0xFFF9F9F9), borderRadius: BorderRadius.circular(8.w), ), padding: EdgeInsets.all(30.w), margin: EdgeInsets.symmetric( horizontal: 64.w, ), child: TextField( // focusNode: verifyNode, maxLines: 100, keyboardType: TextInputType.text, // onChanged: (text) { // if (title == "短信内容") { // _controller.text = text; // } else { // _phoneController.text = text; // } // setState(() {}); // }, onSubmitted: (text) { if (title == "短信内容") { _controller.text = text; } else { _phoneController.text = text; } setState(() {}); }, onEditingComplete: () { setState(() {}); // _refreshController.callRefresh(); }, style: TextStyle( color: BaseStyle.color333333, fontSize: BaseStyle.fontSize28, ), controller: controller, decoration: InputDecoration( contentPadding: EdgeInsets.zero, filled: true, isDense: true, fillColor: Colors.transparent, hintText: hitText, hintStyle: TextStyle( color: BaseStyle.color999999, fontSize: 28.sp, ), border: InputBorder.none, ), ), ), ], ); } _getBox2() { return Container( margin: EdgeInsets.symmetric(horizontal: 64.w), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( "短信签名", style: TextStyle( fontSize: 28.sp, color: const Color(0xFF999999), fontWeight: FontWeight.w600, ), ), 15.heightBox, TextField( // controller: controller, onChanged: (value) { signatureText = value; setState(() {}); }, decoration: InputDecoration( contentPadding: EdgeInsets.all(30.w), hintText: "请输入短信签名", hintStyle: TextStyle( fontSize: 28.sp, // fontWeight: FontWeight.w600, color: const Color(0xFF999999), ), fillColor: const Color(0xFFF9F9F9), filled: true, enabledBorder: const OutlineInputBorder( /*边角*/ borderRadius: BorderRadius.all( Radius.circular(5), //边角为5 ), borderSide: BorderSide( color: Colors.white, //边线颜色为白色 width: 1, //边线宽度为2 ), ), focusedBorder: const OutlineInputBorder( borderSide: BorderSide( color: Colors.white, //边框颜色为白色 width: 1, //宽度为5 ), borderRadius: BorderRadius.all( Radius.circular(5), //边角为30 ), ), ), ), ], ), ); } }