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
4906297c
Commit
4906297c
authored
Apr 18, 2017
by
Hans Muller
Committed by
GitHub
Apr 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scrollable TabBar shows initialIndex (#9402)
parent
d2efd189
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
91 additions
and
6 deletions
+91
-6
tabs.dart
packages/flutter/lib/src/material/tabs.dart
+64
-6
tabs_test.dart
packages/flutter/test/material/tabs_test.dart
+27
-0
No files found.
packages/flutter/lib/src/material/tabs.dart
View file @
4906297c
...
@@ -335,6 +335,54 @@ class _DragAnimation extends Animation<double> with AnimationWithParentMixin<dou
...
@@ -335,6 +335,54 @@ class _DragAnimation extends Animation<double> with AnimationWithParentMixin<dou
}
}
}
}
// This class, and TabBarScrollController, only exist to handle the the case
// where a scrollable TabBar has a non-zero initialIndex. In that case we can
// only compute the scroll position's initial scroll offset (the "correct"
// pixels value) after the TabBar viewport width and scroll limits are known.
class
_TabBarScrollPosition
extends
ScrollPosition
{
_TabBarScrollPosition
({
ScrollPhysics
physics
,
AbstractScrollState
state
,
ScrollPosition
oldPosition
,
this
.
tabBar
,
})
:
super
(
physics:
physics
,
state:
state
,
initialPixels:
null
,
oldPosition:
oldPosition
,
);
final
_TabBarState
tabBar
;
@override
bool
applyContentDimensions
(
double
minScrollExtent
,
double
maxScrollExtent
)
{
bool
result
=
true
;
if
(
pixels
==
null
)
{
correctPixels
(
tabBar
.
_initialScrollOffset
(
viewportDimension
,
minScrollExtent
,
maxScrollExtent
));
result
=
false
;
}
return
super
.
applyContentDimensions
(
minScrollExtent
,
maxScrollExtent
)
&&
result
;
}
}
// This class, and TabBarScrollPosition, only exist to handle the the case
// where a scrollable TabBar has a non-zero initialIndex.
class
_TabBarScrollController
extends
ScrollController
{
_TabBarScrollController
(
this
.
tabBar
);
final
_TabBarState
tabBar
;
@override
ScrollPosition
createScrollPosition
(
ScrollPhysics
physics
,
AbstractScrollState
state
,
ScrollPosition
oldPosition
)
{
return
new
_TabBarScrollPosition
(
physics:
physics
,
state:
state
,
oldPosition:
oldPosition
,
tabBar:
tabBar
,
);
}
}
/// A material design widget that displays a horizontal row of tabs.
/// A material design widget that displays a horizontal row of tabs.
///
///
/// Typically created as part of an [AppBar] and in conjuction with a
/// Typically created as part of an [AppBar] and in conjuction with a
...
@@ -440,7 +488,7 @@ class TabBar extends StatefulWidget implements PreferredSizeWidget {
...
@@ -440,7 +488,7 @@ class TabBar extends StatefulWidget implements PreferredSizeWidget {
}
}
class
_TabBarState
extends
State
<
TabBar
>
{
class
_TabBarState
extends
State
<
TabBar
>
{
final
ScrollController
_scrollController
=
new
ScrollController
()
;
ScrollController
_scrollController
;
TabController
_controller
;
TabController
_controller
;
_IndicatorPainter
_indicatorPainter
;
_IndicatorPainter
_indicatorPainter
;
...
@@ -504,14 +552,22 @@ class _TabBarState extends State<TabBar> {
...
@@ -504,14 +552,22 @@ class _TabBarState extends State<TabBar> {
// tabOffsets[tabOffsets.length] is the right edge of the last tab.
// tabOffsets[tabOffsets.length] is the right edge of the last tab.
int
get
maxTabIndex
=>
_indicatorPainter
.
tabOffsets
.
length
-
2
;
int
get
maxTabIndex
=>
_indicatorPainter
.
tabOffsets
.
length
-
2
;
double
_tabCenteredScrollOffset
(
int
tabIndex
)
{
double
_tabScrollOffset
(
int
index
,
double
viewportWidth
,
double
minExtent
,
double
maxExtent
)
{
if
(!
widget
.
isScrollable
)
return
0.0
;
final
List
<
double
>
tabOffsets
=
_indicatorPainter
.
tabOffsets
;
final
List
<
double
>
tabOffsets
=
_indicatorPainter
.
tabOffsets
;
assert
(
tabOffsets
!=
null
&&
tabIndex
>=
0
&&
tabIndex
<=
maxTabIndex
);
assert
(
tabOffsets
!=
null
&&
index
>=
0
&&
index
<=
maxTabIndex
);
final
double
tabCenter
=
(
tabOffsets
[
index
]
+
tabOffsets
[
index
+
1
])
/
2.0
;
return
(
tabCenter
-
viewportWidth
/
2.0
).
clamp
(
minExtent
,
maxExtent
);
}
double
_tabCenteredScrollOffset
(
int
index
)
{
final
ScrollPosition
position
=
_scrollController
.
position
;
final
ScrollPosition
position
=
_scrollController
.
position
;
final
double
tabCenter
=
(
tabOffsets
[
tabIndex
]
+
tabOffsets
[
tabIndex
+
1
])
/
2.0
;
return
_tabScrollOffset
(
index
,
position
.
viewportDimension
,
position
.
minScrollExtent
,
position
.
maxScrollExtent
);
return
(
tabCenter
-
position
.
viewportDimension
/
2.0
)
}
.
clamp
(
position
.
minScrollExtent
,
position
.
maxScrollExtent
);
double
_initialScrollOffset
(
double
viewportWidth
,
double
minExtent
,
double
maxExtent
)
{
return
_tabScrollOffset
(
_currentIndex
,
viewportWidth
,
minExtent
,
maxExtent
);
}
}
void
_scrollToCurrentIndex
()
{
void
_scrollToCurrentIndex
()
{
...
@@ -557,6 +613,7 @@ class _TabBarState extends State<TabBar> {
...
@@ -557,6 +613,7 @@ class _TabBarState extends State<TabBar> {
});
});
}
}
// Called each time layout completes.
void
_saveTabOffsets
(
List
<
double
>
tabOffsets
)
{
void
_saveTabOffsets
(
List
<
double
>
tabOffsets
)
{
_indicatorPainter
?.
tabOffsets
=
tabOffsets
;
_indicatorPainter
?.
tabOffsets
=
tabOffsets
;
}
}
...
@@ -662,6 +719,7 @@ class _TabBarState extends State<TabBar> {
...
@@ -662,6 +719,7 @@ class _TabBarState extends State<TabBar> {
);
);
if
(
widget
.
isScrollable
)
{
if
(
widget
.
isScrollable
)
{
_scrollController
??=
new
_TabBarScrollController
(
this
);
tabBar
=
new
SingleChildScrollView
(
tabBar
=
new
SingleChildScrollView
(
scrollDirection:
Axis
.
horizontal
,
scrollDirection:
Axis
.
horizontal
,
controller:
_scrollController
,
controller:
_scrollController
,
...
...
packages/flutter/test/material/tabs_test.dart
View file @
4906297c
...
@@ -806,6 +806,33 @@ void main() {
...
@@ -806,6 +806,33 @@ void main() {
// Close enough to switch to page 2
// Close enough to switch to page 2
pageController
.
jumpTo
(
800.0
-
0.75
*
position
.
physics
.
tolerance
.
distance
);
pageController
.
jumpTo
(
800.0
-
0.75
*
position
.
physics
.
tolerance
.
distance
);
expect
(
tabController
.
index
,
2
);
expect
(
tabController
.
index
,
2
);
});
testWidgets
(
'Scrollable TabBar with a non-zero TabController initialIndex'
,
(
WidgetTester
tester
)
async
{
// This is a regression test for https://github.com/flutter/flutter/issues/9374
final
List
<
Tab
>
tabs
=
new
List
<
Tab
>.
generate
(
20
,
(
int
index
)
{
return
new
Tab
(
text:
'TAB #
$index
'
);
});
final
TabController
controller
=
new
TabController
(
vsync:
const
TestVSync
(),
length:
tabs
.
length
,
initialIndex:
tabs
.
length
-
1
,
);
await
tester
.
pumpWidget
(
new
Material
(
child:
new
TabBar
(
isScrollable:
true
,
controller:
controller
,
tabs:
tabs
,
),
),
);
// The initialIndex tab should be visible and right justified
expect
(
find
.
text
(
'TAB #19'
),
findsOneWidget
);
expect
(
tester
.
getTopRight
(
find
.
widgetWithText
(
Tab
,
'TAB #19'
)).
dx
,
800.0
);
});
});
}
}
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