Commit fdb76da5 authored by Matt Perry's avatar Matt Perry Committed by GitHub

Remove default horizontal padding for Input. (#6437)

This partially reverts https://github.com/flutter/flutter/issues/626 ,
but horizontal padding is not in the spec, so we still match the spec.
parent 23c52fc7
...@@ -192,6 +192,8 @@ class _ExpansionPanelsDemoState extends State<ExpasionPanelsDemo> { ...@@ -192,6 +192,8 @@ class _ExpansionPanelsDemoState extends State<ExpasionPanelsDemo> {
return new CollapsibleBody( return new CollapsibleBody(
margin: const EdgeInsets.symmetric(horizontal: 16.0), margin: const EdgeInsets.symmetric(horizontal: 16.0),
child: new Form( child: new Form(
child: new Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: new Input( child: new Input(
hintText: item.hint, hintText: item.hint,
labelText: item.name, labelText: item.name,
...@@ -201,6 +203,7 @@ class _ExpansionPanelsDemoState extends State<ExpasionPanelsDemo> { ...@@ -201,6 +203,7 @@ class _ExpansionPanelsDemoState extends State<ExpasionPanelsDemo> {
), ),
), ),
), ),
),
onSave: close, onSave: close,
onCancel: close onCancel: close
); );
......
...@@ -74,7 +74,7 @@ class TextFieldDemoState extends State<TextFieldDemo> { ...@@ -74,7 +74,7 @@ class TextFieldDemoState extends State<TextFieldDemo> {
), ),
body: new Form( body: new Form(
child: new Block( child: new Block(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.symmetric(horizontal: 16.0),
children: <Widget>[ children: <Widget>[
new Input( new Input(
hintText: 'What do people call you?', hintText: 'What do people call you?',
...@@ -113,6 +113,7 @@ class TextFieldDemoState extends State<TextFieldDemo> { ...@@ -113,6 +113,7 @@ class TextFieldDemoState extends State<TextFieldDemo> {
) )
) )
), ),
new SizedBox(width: 16.0),
new Flexible( new Flexible(
child: new Input( child: new Input(
hintText: 'How do you log in?', hintText: 'How do you log in?',
......
...@@ -306,11 +306,8 @@ class _InputState extends State<Input> { ...@@ -306,11 +306,8 @@ class _InputState extends State<Input> {
child: new GestureDetector( child: new GestureDetector(
behavior: HitTestBehavior.opaque, behavior: HitTestBehavior.opaque,
onTap: () => _rawInputKey.currentState?.requestKeyboard(), onTap: () => _rawInputKey.currentState?.requestKeyboard(),
child: new Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: child child: child
) )
)
); );
} }
} }
......
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