Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
40db1e4b
Commit
40db1e4b
authored
Jun 20, 2017
by
Hans Muller
Committed by
GitHub
Jun 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added InputDecoration helperText, helperStyle (#10852)
parent
b471a9cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
105 additions
and
5 deletions
+105
-5
text_form_field_demo.dart
...utter_gallery/lib/demo/material/text_form_field_demo.dart
+1
-0
input_decorator.dart
packages/flutter/lib/src/material/input_decorator.dart
+35
-5
text_field_test.dart
packages/flutter/test/material/text_field_test.dart
+69
-0
No files found.
examples/flutter_gallery/lib/demo/material/text_form_field_demo.dart
View file @
40db1e4b
...
...
@@ -144,6 +144,7 @@ class TextFormFieldDemoState extends State<TextFormFieldDemo> {
new
TextFormField
(
decoration:
const
InputDecoration
(
hintText:
'Tell us about yourself'
,
helperText:
'Keep it short, this is just a demo'
,
labelText:
'Life story'
,
),
maxLines:
3
,
...
...
packages/flutter/lib/src/material/input_decorator.dart
View file @
40db1e4b
...
...
@@ -31,6 +31,8 @@ class InputDecoration {
this
.
icon
,
this
.
labelText
,
this
.
labelStyle
,
this
.
helperText
,
this
.
helperStyle
,
this
.
hintText
,
this
.
hintStyle
,
this
.
errorText
,
...
...
@@ -55,6 +57,8 @@ class InputDecoration {
})
:
icon
=
null
,
labelText
=
null
,
labelStyle
=
null
,
helperText
=
null
,
helperStyle
=
null
,
errorText
=
null
,
errorStyle
=
null
,
isDense
=
false
,
...
...
@@ -93,6 +97,17 @@ class InputDecoration {
/// input field and the current [Theme].
final
TextStyle
labelStyle
;
/// Text that provides context about the field’s value, such as how the value
/// will be used.
///
/// If non-null, the text is displayed below the input field, in the same
/// location as [errorText]. If a non-null [errorText] value is specified then
/// the helper text is not shown.
final
String
helperText
;
/// The style to use for the [helperText].
final
TextStyle
helperStyle
;
/// Text that suggests what sort of input the field accepts.
///
/// Displayed on top of the input field (i.e., at the same location on the
...
...
@@ -113,7 +128,7 @@ class InputDecoration {
/// Text that appears below the input field.
///
/// If non-null
the divider,
that appears below the input field is red.
/// If non-null
, the divider
that appears below the input field is red.
final
String
errorText
;
/// The style to use for the [errorText].
...
...
@@ -171,6 +186,8 @@ class InputDecoration {
Widget
icon
,
String
labelText
,
TextStyle
labelStyle
,
String
helperText
,
TextStyle
helperStyle
,
String
hintText
,
TextStyle
hintStyle
,
String
errorText
,
...
...
@@ -186,6 +203,8 @@ class InputDecoration {
icon:
icon
??
this
.
icon
,
labelText:
labelText
??
this
.
labelText
,
labelStyle:
labelStyle
??
this
.
labelStyle
,
helperText:
helperText
??
this
.
helperText
,
helperStyle:
helperStyle
??
this
.
helperStyle
,
hintText:
hintText
??
this
.
hintText
,
hintStyle:
hintStyle
??
this
.
hintStyle
,
errorText:
errorText
??
this
.
errorText
,
...
...
@@ -209,6 +228,8 @@ class InputDecoration {
return
typedOther
.
icon
==
icon
&&
typedOther
.
labelText
==
labelText
&&
typedOther
.
labelStyle
==
labelStyle
&&
typedOther
.
helperText
==
helperText
&&
typedOther
.
helperStyle
==
helperStyle
&&
typedOther
.
hintText
==
hintText
&&
typedOther
.
hintStyle
==
hintStyle
&&
typedOther
.
errorText
==
errorText
...
...
@@ -228,6 +249,8 @@ class InputDecoration {
icon
,
labelText
,
labelStyle
,
helperText
,
helperStyle
,
hintText
,
hintStyle
,
errorText
,
...
...
@@ -249,6 +272,8 @@ class InputDecoration {
description
.
add
(
'icon:
$icon
'
);
if
(
labelText
!=
null
)
description
.
add
(
'labelText: "
$labelText
"'
);
if
(
helperText
!=
null
)
description
.
add
(
'helperText: "
$helperText
"'
);
if
(
hintText
!=
null
)
description
.
add
(
'hintText: "
$hintText
"'
);
if
(
errorText
!=
null
)
...
...
@@ -390,6 +415,7 @@ class InputDecorator extends StatelessWidget {
assert
(!
isDense
||
!
isCollapsed
);
final
String
labelText
=
decoration
.
labelText
;
final
String
helperText
=
decoration
.
helperText
;
final
String
hintText
=
decoration
.
hintText
;
final
String
errorText
=
decoration
.
errorText
;
...
...
@@ -485,16 +511,20 @@ class InputDecorator extends StatelessWidget {
stackChildren
.
add
(
_buildContent
(
borderColor
,
topPadding
,
isDense
,
inputChild
));
}
if
(!
isDense
&&
errorText
!=
null
)
{
if
(!
isDense
&&
(
errorText
!=
null
||
helperText
!=
null
)
)
{
assert
(!
isCollapsed
);
final
TextStyle
errorStyle
=
decoration
.
errorStyle
??
themeData
.
textTheme
.
caption
.
copyWith
(
color:
themeData
.
errorColor
);
final
TextStyle
captionStyle
=
themeData
.
textTheme
.
caption
;
final
TextStyle
subtextStyle
=
errorText
!=
null
?
decoration
.
errorStyle
??
captionStyle
.
copyWith
(
color:
themeData
.
errorColor
)
:
decoration
.
helperStyle
??
captionStyle
.
copyWith
(
color:
themeData
.
hintColor
);
stackChildren
.
add
(
new
Positioned
(
left:
0.0
,
right:
0.0
,
bottom:
0.0
,
child:
new
Text
(
errorText
,
style:
error
Style
,
errorText
??
helperText
,
style:
subtext
Style
,
textAlign:
textAlign
,
overflow:
TextOverflow
.
ellipsis
,
),
...
...
packages/flutter/test/material/text_field_test.dart
View file @
40db1e4b
...
...
@@ -741,6 +741,75 @@ void main() {
await
checkText
(
'Hello World'
);
});
testWidgets
(
'TextField errorText trumps helperText'
,
(
WidgetTester
tester
)
async
{
Widget
builder
()
{
return
const
Center
(
child:
const
Material
(
child:
const
TextField
(
decoration:
const
InputDecoration
(
errorText:
'error text'
,
helperText:
'helper text'
,
),
),
),
);
}
await
tester
.
pumpWidget
(
builder
());
expect
(
find
.
text
(
'helper text'
),
findsNothing
);
expect
(
find
.
text
(
'error text'
),
findsOneWidget
);
});
testWidgets
(
'TextField with default helperStyle'
,
(
WidgetTester
tester
)
async
{
final
ThemeData
themeData
=
new
ThemeData
(
hintColor:
Colors
.
blue
[
500
],
);
Widget
builder
()
{
return
new
Center
(
child:
new
Theme
(
data:
themeData
,
child:
const
Material
(
child:
const
TextField
(
decoration:
const
InputDecoration
(
helperText:
'helper text'
,
),
),
),
),
);
}
await
tester
.
pumpWidget
(
builder
());
final
Text
helperText
=
tester
.
widget
(
find
.
text
(
'helper text'
));
expect
(
helperText
.
style
.
color
,
themeData
.
hintColor
);
expect
(
helperText
.
style
.
fontSize
,
themeData
.
textTheme
.
caption
.
fontSize
);
});
testWidgets
(
'TextField with specified helperStyle'
,
(
WidgetTester
tester
)
async
{
final
TextStyle
style
=
new
TextStyle
(
color:
Colors
.
pink
[
500
],
fontSize:
10.0
,
);
Widget
builder
()
{
return
new
Center
(
child:
new
Material
(
child:
new
TextField
(
decoration:
new
InputDecoration
(
helperText:
'helper text'
,
helperStyle:
style
,
),
),
),
);
}
await
tester
.
pumpWidget
(
builder
());
final
Text
helperText
=
tester
.
widget
(
find
.
text
(
'helper text'
));
expect
(
helperText
.
style
,
style
);
});
testWidgets
(
'TextField with default hintStyle'
,
(
WidgetTester
tester
)
async
{
final
TextStyle
style
=
new
TextStyle
(
color:
Colors
.
pink
[
500
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment