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
2b2bbfa6
Unverified
Commit
2b2bbfa6
authored
May 16, 2020
by
Ethan Saadia
Committed by
GitHub
May 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add option for ExpansionTile to maintain the state of its children when collapsed (#57172)
parent
859f2f9b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
4 deletions
+63
-4
expansion_tile.dart
packages/flutter/lib/src/material/expansion_tile.dart
+23
-4
expansion_tile_test.dart
packages/flutter/test/material/expansion_tile_test.dart
+40
-0
No files found.
packages/flutter/lib/src/material/expansion_tile.dart
View file @
2b2bbfa6
...
@@ -41,10 +41,12 @@ class ExpansionTile extends StatefulWidget {
...
@@ -41,10 +41,12 @@ class ExpansionTile extends StatefulWidget {
this
.
children
=
const
<
Widget
>[],
this
.
children
=
const
<
Widget
>[],
this
.
trailing
,
this
.
trailing
,
this
.
initiallyExpanded
=
false
,
this
.
initiallyExpanded
=
false
,
this
.
maintainState
=
false
,
this
.
tilePadding
,
this
.
tilePadding
,
this
.
expandedCrossAxisAlignment
,
this
.
expandedCrossAxisAlignment
,
this
.
expandedAlignment
,
this
.
expandedAlignment
,
})
:
assert
(
initiallyExpanded
!=
null
),
})
:
assert
(
initiallyExpanded
!=
null
),
assert
(
maintainState
!=
null
),
assert
(
assert
(
expandedCrossAxisAlignment
!=
CrossAxisAlignment
.
baseline
,
expandedCrossAxisAlignment
!=
CrossAxisAlignment
.
baseline
,
'CrossAxisAlignment.baseline is not supported since the expanded children '
'CrossAxisAlignment.baseline is not supported since the expanded children '
...
@@ -88,6 +90,13 @@ class ExpansionTile extends StatefulWidget {
...
@@ -88,6 +90,13 @@ class ExpansionTile extends StatefulWidget {
/// Specifies if the list tile is initially expanded (true) or collapsed (false, the default).
/// Specifies if the list tile is initially expanded (true) or collapsed (false, the default).
final
bool
initiallyExpanded
;
final
bool
initiallyExpanded
;
/// Specifies whether the state of the children is maintained when the tile expands and collapses.
///
/// When true, the children are kept in the tree while the tile is collapsed.
/// When false (default), the children are removed from the tree when the tile is
/// collapsed and recreated upon expansion.
final
bool
maintainState
;
/// Specifies padding for the [ListTile].
/// Specifies padding for the [ListTile].
///
///
/// Analogous to [ListTile.contentPadding], this property defines the insets for
/// Analogous to [ListTile.contentPadding], this property defines the insets for
...
@@ -253,13 +262,23 @@ class _ExpansionTileState extends State<ExpansionTile> with SingleTickerProvider
...
@@ -253,13 +262,23 @@ class _ExpansionTileState extends State<ExpansionTile> with SingleTickerProvider
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
final
bool
closed
=
!
_isExpanded
&&
_controller
.
isDismissed
;
final
bool
closed
=
!
_isExpanded
&&
_controller
.
isDismissed
;
final
bool
shouldRemoveChildren
=
closed
&&
!
widget
.
maintainState
;
final
Widget
result
=
Offstage
(
child:
TickerMode
(
child:
Column
(
crossAxisAlignment:
widget
.
expandedCrossAxisAlignment
??
CrossAxisAlignment
.
center
,
children:
widget
.
children
,
),
enabled:
!
closed
,
),
offstage:
closed
);
return
AnimatedBuilder
(
return
AnimatedBuilder
(
animation:
_controller
.
view
,
animation:
_controller
.
view
,
builder:
_buildChildren
,
builder:
_buildChildren
,
child:
closed
?
null
:
Column
(
child:
shouldRemoveChildren
?
null
:
result
,
crossAxisAlignment:
widget
.
expandedCrossAxisAlignment
??
CrossAxisAlignment
.
center
,
children:
widget
.
children
,
),
);
);
}
}
...
...
packages/flutter/test/material/expansion_tile_test.dart
View file @
2b2bbfa6
...
@@ -230,6 +230,46 @@ void main() {
...
@@ -230,6 +230,46 @@ void main() {
expect
(
find
.
text
(
'Subtitle'
),
findsOneWidget
);
expect
(
find
.
text
(
'Subtitle'
),
findsOneWidget
);
});
});
testWidgets
(
'ExpansionTile maintainState'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
MaterialApp
(
theme:
ThemeData
(
platform:
TargetPlatform
.
iOS
,
dividerColor:
_dividerColor
,
),
home:
Material
(
child:
SingleChildScrollView
(
child:
Column
(
children:
const
<
Widget
>[
ExpansionTile
(
title:
Text
(
'Tile 1'
),
initiallyExpanded:
false
,
maintainState:
true
,
children:
<
Widget
>[
Text
(
'Maintaining State'
),
],
),
ExpansionTile
(
title:
Text
(
'Title 2'
),
initiallyExpanded:
false
,
maintainState:
false
,
children:
<
Widget
>[
Text
(
'Discarding State'
),
],
),
],
),
),
),
));
// This text should be offstage while ExpansionTile collapsed
expect
(
find
.
text
(
'Maintaining State'
,
skipOffstage:
false
),
findsOneWidget
);
expect
(
find
.
text
(
'Maintaining State'
),
findsNothing
);
// This text shouldn't be there while ExpansionTile collapsed
expect
(
find
.
text
(
'Discarding State'
),
findsNothing
);
});
testWidgets
(
'ExpansionTile padding test'
,
(
WidgetTester
tester
)
async
{
testWidgets
(
'ExpansionTile padding test'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
const
MaterialApp
(
await
tester
.
pumpWidget
(
const
MaterialApp
(
home:
Material
(
home:
Material
(
...
...
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