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

意见与建议

parent ad253d64
......@@ -23,6 +23,7 @@ class ALAlphaButton extends FlatButton {
Color disabledColor,
Color highlightColor,
Color splashColor,
double minWidth,
Brightness colorBrightness,
EdgeInsetsGeometry padding,
ShapeBorder shape,
......@@ -52,9 +53,13 @@ class ALAlphaButton extends FlatButton {
Widget build(BuildContext context) {
// TODO: implement build
return FlatButton(
onPressed: onPressed,
textTheme:textTheme,
padding: padding,
child: child,
color: ALColors.Color323232,
onPressed: onPressed,
textColor: ALColors.Color323232,
highlightColor:ALColors.Color323232,
color: ALColors.ColorFFFFFF,
shape: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)),
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';
void main() {
debugPaintSizeEnabled = false; //打开视觉调试开关
return runApp(_widgetForRoute(window.defaultRouteName));
return runApp(
_widgetForRoute(window.defaultRouteName)
);
// return runApp(MaterialApp(
// home: '/',
// routes: {
//
// },
// ))
}
class ALRoute {
......@@ -28,15 +36,16 @@ Widget _widgetForRoute(String route) {
}
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData.light(),
home: MyHomePage(title: 'Flutter Demo Home Page'),
routes: {
"/channeltest": batteryChannelPage,
},
......
......@@ -9,6 +9,7 @@
import 'package:flutter/material.dart';
import 'macros/ALColors.dart';
import 'macros/ALDevice.dart';
import 'macros/ALCommon.dart';
//ALColors.ColorFFFFFF
class Opinion extends StatelessWidget {
......@@ -19,11 +20,11 @@ class Opinion extends StatelessWidget {
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
color: ALColors.ColorFFFFFF,
theme: ThemeData.light(),
home: OpinionPage(title: '意见和建议1111111'),
// routes: {
// "/channeltest": batteryChannelPage,
// },
theme: ThemeData(
splashColor: Colors.white10
,//水波纹的颜色
),
home: OpinionPage(title: '意见和建议'),
);
}
}
......@@ -38,8 +39,8 @@ class OpinionPage extends StatefulWidget {
}
class _OpinionPageState extends State<OpinionPage> {
TextEditingController opinionCtrl = TextEditingController();
TextEditingController telCtrl = TextEditingController();
@override
Widget build(BuildContext context) {
......@@ -47,68 +48,109 @@ class _OpinionPageState extends State<OpinionPage> {
// appBar: AppBar(
// title: Text('Home'),
// ),
appBar: PreferredSize(
child: Container(
alignment: Alignment.center,
child: Text(
'意见与反馈',
style: TextStyle(color: ALColors.Color323232, fontSize: 18),
appBar: PreferredSize(
child: Container(
alignment: Alignment.center,
child: Text(
'${widget.title}',
style: TextStyle(color: ALColors.Color323232, fontSize: 18),
),
),
),
preferredSize: Size(320, 64)),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
margin: EdgeInsets.only(left: 30, top: 42, right: 30, bottom: 0),
height: 215,
width: ALDevice.width,
child: TextField(
controller: opinionCtrl,
decoration: InputDecoration(
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)
preferredSize: Size(320, 64)),
body: Container(
height: ALDevice.height,
width: ALDevice.width,
child: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Container(
alignment: Alignment.topCenter,
margin:
EdgeInsets.only(left: 30, top: 42, right: 30, bottom: 0),
height: 215,
width: ALDevice.width,
decoration: BoxDecoration(
border: Border.all(color: ALColors.ColorC4C4C4, width: 1),
),
child: TextField(
// maxLines: 10,
controller: opinionCtrl,
decoration: InputDecoration(
border: InputBorder.none,
contentPadding: EdgeInsets.all(10),
hintText: '意见与建议',
hintStyle: TextStyle(
color: ALColors.ColorC4C4C4,
fontSize: 14,
),
labelStyle:
TextStyle(color: ALColors.Color323232, fontSize: 19),
),
hintText: '意见与建议',
hintStyle: TextStyle(
),
),
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),
fontSize: 14,
),
labelStyle:
TextStyle(color: ALColors.Color323232, fontSize: 19),
),
),
),
// Container(
// height: 1,
// margin: EdgeInsets.only(left: 30,right: 30,top: 5),
// 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){
),
),
OutlineButton(
child: Text('有阴影'),
},
onPressed: confirmClick,
child: Text(
'提交',
style:
TextStyle(fontSize: 14, color: ALColors.Color323232),
),
),
),
],
),
FlatButton(
shape: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0)),
borderSide:BorderSide(color: ALColors.Color323232)
),
child: Text('提交2222'),
color: ALColors.ColorFFFFFF,
onPressed: () {
Navigator.pushNamed(context, "/channeltest");
},
)
],
),
),
);
),
));
}
}
void confirmClick() {
print('confirmClick');
}
//
//class MyNarBar extends PreferredSizeWidget {
// @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