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.
65 lines
2.0 KiB
65 lines
2.0 KiB
4 years ago
|
import 'package:aku_community_manager/style/app_style.dart';
|
||
|
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
|
||
|
import 'package:aku_ui/common_widgets/aku_material_button.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:aku_community_manager/tools/screen_tool.dart';
|
||
|
|
||
|
class SettingFeedBackPage extends StatefulWidget {
|
||
|
SettingFeedBackPage({Key key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
_SettingFeedBackPageState createState() => _SettingFeedBackPageState();
|
||
|
}
|
||
|
|
||
|
class _SettingFeedBackPageState extends State<SettingFeedBackPage> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return AkuScaffold(
|
||
|
title: '意见反馈',
|
||
|
backgroundColor: Colors.white,
|
||
|
body: ListView(
|
||
|
children: [
|
||
|
Container(
|
||
|
height: 20.w,
|
||
|
color: AppStyle.backgroundColor,
|
||
|
),
|
||
|
Container(
|
||
|
margin: EdgeInsets.symmetric(
|
||
|
vertical: 24.w,
|
||
|
horizontal: 32.w,
|
||
|
),
|
||
|
padding: EdgeInsets.all(24.w),
|
||
|
child: Column(
|
||
|
mainAxisSize: MainAxisSize.min,
|
||
|
children: [
|
||
|
TextField(
|
||
|
minLines: 5,
|
||
|
maxLines: 99,
|
||
|
decoration: InputDecoration(
|
||
|
border: InputBorder.none,
|
||
|
contentPadding: EdgeInsets.zero,
|
||
|
hintText: '请输入你的意见和建议',
|
||
|
hintStyle: TextStyle(
|
||
|
color: Color(0xFF999999),
|
||
|
fontSize: 28.sp,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
decoration: BoxDecoration(
|
||
|
color: AppStyle.backgroundColor,
|
||
|
borderRadius: BorderRadius.circular(16.w),
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
bottom: AkuMaterialButton(
|
||
|
onPressed: () {},
|
||
|
child: Text('提交'),
|
||
|
color: AppStyle.minorColor,
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|