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
ddeb5bb9
Unverified
Commit
ddeb5bb9
authored
Aug 03, 2020
by
Hans Muller
Committed by
GitHub
Aug 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use OverflowBar instead of ButtonBar in DatePicker (#62686)
parent
17d31797
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
91 additions
and
15 deletions
+91
-15
date_picker_dialog.dart
.../flutter/lib/src/material/pickers/date_picker_dialog.dart
+17
-15
date_picker_test.dart
packages/flutter/test/material/date_picker_test.dart
+74
-0
No files found.
packages/flutter/lib/src/material/pickers/date_picker_dialog.dart
View file @
ddeb5bb9
...
...
@@ -9,8 +9,6 @@ import 'dart:math' as math;
import
'package:flutter/services.dart'
;
import
'package:flutter/widgets.dart'
;
import
'../button_bar.dart'
;
import
'../button_theme.dart'
;
import
'../color_scheme.dart'
;
import
'../debug.dart'
;
import
'../dialog.dart'
;
...
...
@@ -383,19 +381,23 @@ class _DatePickerDialogState extends State<_DatePickerDialog> {
?
textTheme
.
headline5
?.
copyWith
(
color:
dateColor
)
:
textTheme
.
headline4
?.
copyWith
(
color:
dateColor
);
final
Widget
actions
=
ButtonBar
(
buttonTextTheme:
ButtonTextTheme
.
primary
,
layoutBehavior:
ButtonBarLayoutBehavior
.
constrained
,
children:
<
Widget
>[
TextButton
(
child:
Text
(
widget
.
cancelText
??
localizations
.
cancelButtonLabel
),
onPressed:
_handleCancel
,
),
TextButton
(
child:
Text
(
widget
.
confirmText
??
localizations
.
okButtonLabel
),
onPressed:
_handleOk
,
),
],
final
Widget
actions
=
Container
(
alignment:
AlignmentDirectional
.
centerEnd
,
constraints:
const
BoxConstraints
(
minHeight:
52.0
),
padding:
const
EdgeInsets
.
symmetric
(
horizontal:
8
),
child:
OverflowBar
(
spacing:
8
,
children:
<
Widget
>[
TextButton
(
child:
Text
(
widget
.
cancelText
??
localizations
.
cancelButtonLabel
),
onPressed:
_handleCancel
,
),
TextButton
(
child:
Text
(
widget
.
confirmText
??
localizations
.
okButtonLabel
),
onPressed:
_handleOk
,
),
],
),
);
Widget
picker
;
...
...
packages/flutter/test/material/date_picker_test.dart
View file @
ddeb5bb9
...
...
@@ -362,6 +362,80 @@ void main() {
expect
(
themeDialogMaterial
.
elevation
,
customDialogTheme
.
elevation
);
});
testWidgets
(
'OK Cancel button layout'
,
(
WidgetTester
tester
)
async
{
Widget
buildFrame
(
TextDirection
textDirection
)
{
return
MaterialApp
(
home:
Material
(
child:
Center
(
child:
Builder
(
builder:
(
BuildContext
context
)
{
return
ElevatedButton
(
child:
const
Text
(
'X'
),
onPressed:
()
{
showDatePicker
(
context:
context
,
initialDate:
DateTime
(
2016
,
DateTime
.
january
,
15
),
firstDate:
DateTime
(
2001
,
DateTime
.
january
,
1
),
lastDate:
DateTime
(
2031
,
DateTime
.
december
,
31
),
builder:
(
BuildContext
context
,
Widget
child
)
{
return
Directionality
(
textDirection:
textDirection
,
child:
child
,
);
},
);
},
);
},
),
),
),
);
}
// Default landscape layout.
await
tester
.
pumpWidget
(
buildFrame
(
TextDirection
.
ltr
));
await
tester
.
tap
(
find
.
text
(
'X'
));
await
tester
.
pumpAndSettle
();
expect
(
tester
.
getBottomRight
(
find
.
text
(
'OK'
)).
dx
,
622
);
expect
(
tester
.
getBottomLeft
(
find
.
text
(
'OK'
)).
dx
,
594
);
expect
(
tester
.
getBottomRight
(
find
.
text
(
'CANCEL'
)).
dx
,
560
);
await
tester
.
tap
(
find
.
text
(
'OK'
));
await
tester
.
pumpAndSettle
();
await
tester
.
pumpWidget
(
buildFrame
(
TextDirection
.
rtl
));
await
tester
.
tap
(
find
.
text
(
'X'
));
await
tester
.
pumpAndSettle
();
expect
(
tester
.
getBottomRight
(
find
.
text
(
'OK'
)).
dx
,
206
);
expect
(
tester
.
getBottomLeft
(
find
.
text
(
'OK'
)).
dx
,
178
);
expect
(
tester
.
getBottomRight
(
find
.
text
(
'CANCEL'
)).
dx
,
324
);
await
tester
.
tap
(
find
.
text
(
'OK'
));
await
tester
.
pumpAndSettle
();
// Portrait layout.
addTearDown
(
tester
.
binding
.
window
.
clearPhysicalSizeTestValue
);
tester
.
binding
.
window
.
physicalSizeTestValue
=
const
Size
(
900
,
1200
);
await
tester
.
pumpWidget
(
buildFrame
(
TextDirection
.
ltr
));
await
tester
.
tap
(
find
.
text
(
'X'
));
await
tester
.
pumpAndSettle
();
expect
(
tester
.
getBottomRight
(
find
.
text
(
'OK'
)).
dx
,
258
);
expect
(
tester
.
getBottomLeft
(
find
.
text
(
'OK'
)).
dx
,
230
);
expect
(
tester
.
getBottomRight
(
find
.
text
(
'CANCEL'
)).
dx
,
196
);
await
tester
.
tap
(
find
.
text
(
'OK'
));
await
tester
.
pumpAndSettle
();
await
tester
.
pumpWidget
(
buildFrame
(
TextDirection
.
rtl
));
await
tester
.
tap
(
find
.
text
(
'X'
));
await
tester
.
pumpAndSettle
();
expect
(
tester
.
getBottomRight
(
find
.
text
(
'OK'
)).
dx
,
70
);
expect
(
tester
.
getBottomLeft
(
find
.
text
(
'OK'
)).
dx
,
42
);
expect
(
tester
.
getBottomRight
(
find
.
text
(
'CANCEL'
)).
dx
,
188
);
await
tester
.
tap
(
find
.
text
(
'OK'
));
await
tester
.
pumpAndSettle
();
});
});
group
(
'Calendar mode'
,
()
{
...
...
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