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.

322 lines
10 KiB

3 years ago
import 'package:dio/dio.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
3 years ago
import 'package:flutter/services.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:huixiang/generated/l10n.dart';
3 years ago
import 'package:huixiang/retrofit/data/base_data.dart';
import 'package:huixiang/retrofit/retrofit_api.dart';
4 years ago
import 'package:huixiang/view_widget/my_appbar.dart';
import 'package:huixiang/view_widget/round_button.dart';
4 years ago
import 'package:flutter_screenutil/flutter_screenutil.dart';
3 years ago
import 'package:shared_preferences/shared_preferences.dart';
class HelpFeedbackPage extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _HelpFeedbackPage();
}
}
4 years ago
class _HelpFeedbackPage extends State<HelpFeedbackPage> {
var _isExpanded = [false, false, false];
3 years ago
ApiService apiService;
@override
void initState() {
super.initState();
SharedPreferences.getInstance().then((value) {
apiService = ApiService(Dio(), context: context, token: value.getString("token"));
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
4 years ago
appBar: MyAppBar(
title: S.of(context).bangzhuyufankui,
titleColor: Colors.black,
background: Color(0xFFF7F7F7),
leadingColor: Colors.black,
),
4 years ago
body: Container(
decoration: new BoxDecoration(
4 years ago
border: Border(
bottom: BorderSide(
color: Color(0xffF7F7F7),
),
),
color: Color(0xffF7F7F7),
),
4 years ago
child: Column(
children: [
4 years ago
Expanded(
child: SingleChildScrollView(
physics: BouncingScrollPhysics(),
4 years ago
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.max,
children: [
SizedBox(
height: 24.h,
),
Container(
margin: EdgeInsets.only(left: 16.w),
child: Text(
S.of(context).fankui,
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color(0xFF353535),
fontSize: 16.sp,
4 years ago
),
4 years ago
),
),
_feedback(),
Container(
margin: EdgeInsets.only(left: 16.w),
child: Text(
S.of(context).lianxishoujihao,
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color(0xFF353535),
fontSize: 16.sp,
),
4 years ago
),
),
_contactPhoneNumber(),
Container(
margin: EdgeInsets.only(left: 16.w, bottom: 20.h),
child: Text(
S.of(context).changjianwenti,
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color(0xFF353535),
fontSize: 16.sp,
4 years ago
),
4 years ago
),
),
Container(
margin: EdgeInsets.symmetric(horizontal: 16.w),
padding: EdgeInsets.all(16.w),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(8.w),
boxShadow: [
BoxShadow(
color: Colors.black.withAlpha(12),
offset: Offset(0, 3),
blurRadius: 14,
spreadRadius: 0,
)
],
),
child: Column(
children: [
3 years ago
_commonProblem(S.of(context).ruhelingquyouhuiquan,
S.of(context).ruhelingquyouhuiquan1, 0),
4 years ago
_commonProblem(
3 years ago
S.of(context).ruhedihuanjifen,
S.of(context).ruhedihuanjifen1,
4 years ago
1),
_commonProblem(
3 years ago
S.of(context).ruheqiandao,
S.of(context).ruheqiandao1,
4 years ago
2),
],
),
),
4 years ago
SizedBox(
height: 20.h,
),
],
),
),
4 years ago
flex: 1,
),
3 years ago
InkWell(
onTap: () {
report();
},
child: Container(
height: 54.h,
alignment: Alignment.center,
color: Color(0xFF32A060),
child: RoundButton(
text: S.of(context).tijiao,
backgroup: Color(0xFF32A060),
textColor: Colors.white,
fontSize: 16.sp,
fontWeight: FontWeight.bold,
),
),
4 years ago
),
],
),
4 years ago
),
);
}
3 years ago
report() async {
var content = editingController.text;
var phone = phoneController.text;
BaseData baseData = await apiService.report({
"mobile": phone,
"reportContent": content,
});
if (baseData != null && baseData.isSuccess) {
SmartDialog.showToast("反馈成功");
Navigator.of(context).pop();
} else {
SmartDialog.showToast("反馈失败");
}
}
final TextEditingController editingController = TextEditingController();
final TextEditingController phoneController = TextEditingController();
int textLength = 0;
4 years ago
_feedback() {
return Container(
width: double.infinity,
4 years ago
height: 186.h,
4 years ago
margin: EdgeInsets.all(16.w),
decoration: new BoxDecoration(
4 years ago
color: Color(0xffffffff),
borderRadius: BorderRadius.circular(4.0),
boxShadow: [
BoxShadow(
color: Colors.black.withAlpha(12),
offset: Offset(0, 3),
blurRadius: 14,
spreadRadius: 0,
),
],
),
child: Column(
children: [
Container(
4 years ago
margin: EdgeInsets.fromLTRB(20.w, 5.h, 20.w, 0),
alignment: Alignment.topLeft,
child: TextField(
maxLines: 5,
3 years ago
controller: editingController,
onChanged: (value) {
setState(() {
textLength = value.length;
});
},
maxLength: 50,
decoration: InputDecoration(
border: InputBorder.none,
3 years ago
hintText: S.of(context).fankuilizi,
4 years ago
hintStyle: TextStyle(
fontSize: 14.sp,
3 years ago
fontWeight: FontWeight.w400,
4 years ago
color: Color(0xffA29E9E),
),
),
),
),
3 years ago
// Container(
// alignment: Alignment.bottomRight,
// padding: EdgeInsets.only(right: 20.w),
// child: Text(
// "$textLength/50",
// style: TextStyle(
// fontSize: 14.sp,
// fontWeight: FontWeight.w400,
// color: Color(0xffA29E9E),
// ),
// ),
// ),
],
),
);
}
4 years ago
_contactPhoneNumber() {
return Container(
width: double.infinity,
4 years ago
margin: EdgeInsets.all(16.w),
3 years ago
decoration: BoxDecoration(
4 years ago
color: Color(0xffffffff),
borderRadius: BorderRadius.circular(4.0),
boxShadow: [
BoxShadow(
4 years ago
color: Colors.black.withAlpha(12),
offset: Offset(0, 3),
blurRadius: 14,
spreadRadius: 0,
)
4 years ago
],
),
child: Column(
children: [
Container(
4 years ago
margin: EdgeInsets.fromLTRB(20.w, 0, 20.w, 0),
alignment: Alignment.topLeft,
child: TextField(
3 years ago
controller: phoneController,
inputFormatters: [LengthLimitingTextInputFormatter(11)],
decoration: InputDecoration(
border: InputBorder.none,
3 years ago
hintText: S.of(context).qingshuruyouxiaoshoujihaoma,
4 years ago
hintStyle: TextStyle(
4 years ago
fontSize: 14.sp,
3 years ago
fontWeight: FontWeight.w400,
4 years ago
color: Color(0xffA29E9E),
),
),
),
),
],
),
);
}
4 years ago
_commonProblem(var title, var cnt, var index) {
return Container(
alignment: Alignment.center,
child: Column(
children: <Widget>[
ExpansionPanelList(
4 years ago
elevation: 0,
children: <ExpansionPanel>[
ExpansionPanel(
4 years ago
headerBuilder: (context, isExpanded) {
return ListTile(
title: Text(title),
);
},
body: Padding(
4 years ago
padding: EdgeInsets.fromLTRB(15.w, 0, 8.w, 8.h),
child: Text(
cnt,
style: TextStyle(
fontSize: 14.sp,
3 years ago
fontWeight: FontWeight.w400,
4 years ago
color: Color(0xff8B8B8B),
),
),
),
isExpanded: _isExpanded[index],
canTapOnHeader: true,
),
],
4 years ago
expansionCallback: (panelIndex, isExpanded) {
setState(() {
_isExpanded[index] = !isExpanded;
});
},
4 years ago
animationDuration: kThemeAnimationDuration,
),
],
),
);
}
4 years ago
}