Commit 30f859a9 authored by 艾娇平's avatar 艾娇平

意见与建议

parent ad253d64
...@@ -23,6 +23,7 @@ class ALAlphaButton extends FlatButton { ...@@ -23,6 +23,7 @@ class ALAlphaButton extends FlatButton {
Color disabledColor, Color disabledColor,
Color highlightColor, Color highlightColor,
Color splashColor, Color splashColor,
double minWidth,
Brightness colorBrightness, Brightness colorBrightness,
EdgeInsetsGeometry padding, EdgeInsetsGeometry padding,
ShapeBorder shape, ShapeBorder shape,
...@@ -52,9 +53,13 @@ class ALAlphaButton extends FlatButton { ...@@ -52,9 +53,13 @@ class ALAlphaButton extends FlatButton {
Widget build(BuildContext context) { Widget build(BuildContext context) {
// TODO: implement build // TODO: implement build
return FlatButton( return FlatButton(
onPressed: onPressed, textTheme:textTheme,
padding: padding,
child: child, child: child,
color: ALColors.Color323232, onPressed: onPressed,
textColor: ALColors.Color323232,
highlightColor:ALColors.Color323232,
color: ALColors.ColorFFFFFF,
shape: OutlineInputBorder( shape: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)), borderRadius: BorderRadius.all(Radius.circular(0)),
borderSide: BorderSide(color: ALColors.Color323232)), borderSide: BorderSide(color: ALColors.Color323232)),
......
//
// ALFont
//
// gmalpha_flutter
// Created by lxrent on 2019/2/19.
// Copyright © 2019 Gengmei. All rights reserved.
//
...@@ -6,7 +6,15 @@ import 'package:flutter/rendering.dart'; ...@@ -6,7 +6,15 @@ import 'package:flutter/rendering.dart';
void main() { void main() {
debugPaintSizeEnabled = false; //打开视觉调试开关 debugPaintSizeEnabled = false; //打开视觉调试开关
return runApp(_widgetForRoute(window.defaultRouteName)); return runApp(
_widgetForRoute(window.defaultRouteName)
);
// return runApp(MaterialApp(
// home: '/',
// routes: {
//
// },
// ))
} }
class ALRoute { class ALRoute {
...@@ -28,15 +36,16 @@ Widget _widgetForRoute(String route) { ...@@ -28,15 +36,16 @@ Widget _widgetForRoute(String route) {
} }
} }
class MyApp extends StatelessWidget { class MyApp extends StatelessWidget {
// This widget is the root of your application. // This widget is the root of your application.
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return MaterialApp(
title: 'Flutter Demo', title: 'Flutter Demo',
theme: ThemeData.light(), theme: ThemeData.light(),
home: MyHomePage(title: 'Flutter Demo Home Page'), home: MyHomePage(title: 'Flutter Demo Home Page'),
routes: { routes: {
"/channeltest": batteryChannelPage, "/channeltest": batteryChannelPage,
}, },
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'macros/ALColors.dart'; import 'macros/ALColors.dart';
import 'macros/ALDevice.dart'; import 'macros/ALDevice.dart';
import 'macros/ALCommon.dart';
//ALColors.ColorFFFFFF //ALColors.ColorFFFFFF
class Opinion extends StatelessWidget { class Opinion extends StatelessWidget {
...@@ -19,11 +20,11 @@ class Opinion extends StatelessWidget { ...@@ -19,11 +20,11 @@ class Opinion extends StatelessWidget {
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
title: 'Flutter Demo', title: 'Flutter Demo',
color: ALColors.ColorFFFFFF, color: ALColors.ColorFFFFFF,
theme: ThemeData.light(), theme: ThemeData(
home: OpinionPage(title: '意见和建议1111111'), splashColor: Colors.white10
// routes: { ,//水波纹的颜色
// "/channeltest": batteryChannelPage, ),
// }, home: OpinionPage(title: '意见和建议'),
); );
} }
} }
...@@ -38,8 +39,8 @@ class OpinionPage extends StatefulWidget { ...@@ -38,8 +39,8 @@ class OpinionPage extends StatefulWidget {
} }
class _OpinionPageState extends State<OpinionPage> { class _OpinionPageState extends State<OpinionPage> {
TextEditingController opinionCtrl = TextEditingController(); TextEditingController opinionCtrl = TextEditingController();
TextEditingController telCtrl = TextEditingController();
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
...@@ -51,64 +52,105 @@ class _OpinionPageState extends State<OpinionPage> { ...@@ -51,64 +52,105 @@ class _OpinionPageState extends State<OpinionPage> {
child: Container( child: Container(
alignment: Alignment.center, alignment: Alignment.center,
child: Text( child: Text(
'意见与反馈', '${widget.title}',
style: TextStyle(color: ALColors.Color323232, fontSize: 18), style: TextStyle(color: ALColors.Color323232, fontSize: 18),
), ),
), ),
preferredSize: Size(320, 64)), preferredSize: Size(320, 64)),
body: Center( body: Container(
height: ALDevice.height,
width: ALDevice.width,
child: Center(
// Center is a layout widget. It takes a single child and positions it // Center is a layout widget. It takes a single child and positions it
// in the middle of the parent. // in the middle of the parent.
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[ children: <Widget>[
Container( Container(
margin: EdgeInsets.only(left: 30, top: 42, right: 30, bottom: 0), alignment: Alignment.topCenter,
margin:
EdgeInsets.only(left: 30, top: 42, right: 30, bottom: 0),
height: 215, height: 215,
width: ALDevice.width, width: ALDevice.width,
decoration: BoxDecoration(
border: Border.all(color: ALColors.ColorC4C4C4, width: 1),
),
child: TextField( child: TextField(
// maxLines: 10,
controller: opinionCtrl, controller: opinionCtrl,
decoration: InputDecoration( decoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.all(10), contentPadding: EdgeInsets.all(10),
border: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)),
borderSide:BorderSide(color: ALColors.ColorC4C4C4)
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)),
borderSide:BorderSide(color: ALColors.ColorC4C4C4)
),
hintText: '意见与建议', hintText: '意见与建议',
hintStyle: TextStyle( hintStyle: TextStyle(
color: ALColors.ColorC4C4C4, color: ALColors.ColorC4C4C4,
fontSize: 14,), fontSize: 14,
labelStyle: TextStyle(color: ALColors.Color323232,fontSize: 19),
), ),
labelStyle:
TextStyle(color: ALColors.Color323232, fontSize: 19),
),
),
),
Container(
height: 40,
margin: EdgeInsets.only(left: 30, right: 30,top: 30),
padding: EdgeInsets.only(bottom: 10),
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(color: ALColors.ColorC4C4C4),
)),
alignment: Alignment.centerLeft,
child: TextField(
controller: telCtrl,
decoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.all(10),
hintText: '联系方式',
hintStyle: TextStyle(
color: ALColors.ColorC4C4C4,
fontSize: 14,
), ),
labelStyle:
TextStyle(color: ALColors.Color323232, fontSize: 19),
), ),
OutlineButton(
child: Text('有阴影'),
), ),
FlatButton(
shape: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)),
borderSide:BorderSide(color: ALColors.Color323232)
), ),
child: Text('提交2222'), // Container(
color: ALColors.ColorFFFFFF, // height: 1,
onPressed: () { // margin: EdgeInsets.only(left: 30,right: 30,top: 5),
Navigator.pushNamed(context, "/channeltest"); // child: Divider(height: 1,color: ALColors.ColorC4C4C4,),
// ),
Container(
decoration: BoxDecoration(
border:
Border.all(color: ALColors.Color323232, width: 1.5)),
margin: EdgeInsets.all(30),
padding: EdgeInsets.all(0),
constraints:
BoxConstraints(minWidth: ALDevice.width, minHeight: 45),
alignment: Alignment.center,
child: FlatButton(
onHighlightChanged:(bool b){
}, },
) onPressed: confirmClick,
child: Text(
'提交',
style:
TextStyle(fontSize: 14, color: ALColors.Color323232),
),
),
),
], ],
), ),
), ),
); ));
} }
} }
void confirmClick() {
print('confirmClick');
}
// //
//class MyNarBar extends PreferredSizeWidget { //class MyNarBar extends PreferredSizeWidget {
// @override // @override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment