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
3022db2b
Unverified
Commit
3022db2b
authored
Jun 23, 2022
by
Aman Verma
Committed by
GitHub
Jun 23, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Add more potential use case for Bottom Navigation Bar (#99644)
parent
912b81f6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
161 additions
and
0 deletions
+161
-0
bottom_navigation_bar.2.dart
...terial/bottom_navigation_bar/bottom_navigation_bar.2.dart
+114
-0
bottom_navigation_bar.2.test.dart
...l/bottom_navigation_bar/bottom_navigation_bar.2.test.dart
+38
-0
bottom_navigation_bar.dart
packages/flutter/lib/src/material/bottom_navigation_bar.dart
+9
-0
No files found.
examples/api/lib/material/bottom_navigation_bar/bottom_navigation_bar.2.dart
0 → 100644
View file @
3022db2b
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flutter code sample for BottomNavigationBar
import
'package:flutter/material.dart'
;
void
main
(
)
=>
runApp
(
const
MyApp
());
class
MyApp
extends
StatelessWidget
{
const
MyApp
({
super
.
key
});
static
const
String
_title
=
'Flutter Code Sample'
;
@override
Widget
build
(
BuildContext
context
)
{
return
const
MaterialApp
(
title:
_title
,
home:
MyStatefulWidget
(),
);
}
}
class
MyStatefulWidget
extends
StatefulWidget
{
const
MyStatefulWidget
({
super
.
key
});
@override
State
<
MyStatefulWidget
>
createState
()
=>
_MyStatefulWidgetState
();
}
class
_MyStatefulWidgetState
extends
State
<
MyStatefulWidget
>
{
int
_selectedIndex
=
0
;
final
ScrollController
_homeController
=
ScrollController
();
Widget
_listViewBody
()
{
return
ListView
.
separated
(
controller:
_homeController
,
itemBuilder:
(
BuildContext
context
,
int
index
)
{
return
Center
(
child:
Text
(
'Item
$index
'
,
),
);
},
separatorBuilder:
(
BuildContext
context
,
int
index
)
=>
const
Divider
(
thickness:
1
,
),
itemCount:
50
);
}
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
const
Text
(
'BottomNavigationBar Sample'
),
),
body:
_listViewBody
(),
bottomNavigationBar:
BottomNavigationBar
(
items:
const
<
BottomNavigationBarItem
>[
BottomNavigationBarItem
(
icon:
Icon
(
Icons
.
home
),
label:
'Home'
,
),
BottomNavigationBarItem
(
icon:
Icon
(
Icons
.
open_in_new_rounded
),
label:
'Open Dialog'
,
),
],
currentIndex:
_selectedIndex
,
selectedItemColor:
Colors
.
amber
[
800
],
onTap:
(
int
index
)
{
switch
(
index
)
{
case
0
:
// only scroll to top when current index is selected.
if
(
_selectedIndex
==
index
)
{
_homeController
.
animateTo
(
0.0
,
duration:
const
Duration
(
milliseconds:
500
),
curve:
Curves
.
easeOut
,
);
}
break
;
case
1
:
showModal
(
context
);
break
;
}
setState
(
()
{
_selectedIndex
=
index
;
},
);
},
),
);
}
void
showModal
(
BuildContext
context
)
{
showDialog
(
context:
context
,
builder:
(
BuildContext
context
)
=>
AlertDialog
(
content:
const
Text
(
'Example Dialog'
),
actions:
<
TextButton
>[
TextButton
(
onPressed:
()
{
Navigator
.
pop
(
context
);
},
child:
const
Text
(
'Close'
),
)
],
),
);
}
}
examples/api/test/material/bottom_navigation_bar/bottom_navigation_bar.2.test.dart
0 → 100644
View file @
3022db2b
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'package:flutter_api_samples/material/bottom_navigation_bar/bottom_navigation_bar.2.dart'
as
example
;
import
'package:flutter_test/flutter_test.dart'
;
void
main
(
)
{
testWidgets
(
'BottomNavigationBar Updates Screen Content'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
const
example
.
MyApp
(),
);
expect
(
find
.
widgetWithText
(
AppBar
,
'BottomNavigationBar Sample'
),
findsOneWidget
);
expect
(
find
.
byType
(
BottomNavigationBar
),
findsOneWidget
);
expect
(
find
.
widgetWithText
(
Center
,
'Item 0'
),
findsOneWidget
);
await
tester
.
scrollUntilVisible
(
find
.
widgetWithText
(
Center
,
'Item 49'
),
100
);
await
tester
.
pumpAndSettle
();
expect
(
find
.
widgetWithText
(
Center
,
'Item 49'
),
findsOneWidget
);
await
tester
.
tap
(
find
.
byIcon
(
Icons
.
home
));
await
tester
.
tap
(
find
.
byIcon
(
Icons
.
home
));
await
tester
.
pumpAndSettle
();
final
Scrollable
bodyScrollView
=
tester
.
widget
(
find
.
byType
(
Scrollable
));
expect
(
bodyScrollView
.
controller
?.
offset
,
0.0
);
await
tester
.
tap
(
find
.
byIcon
(
Icons
.
open_in_new_rounded
));
await
tester
.
pumpAndSettle
();
expect
(
find
.
byType
(
AlertDialog
),
findsOneWidget
);
});
}
packages/flutter/lib/src/material/bottom_navigation_bar.dart
View file @
3022db2b
...
@@ -118,6 +118,15 @@ enum BottomNavigationBarLandscapeLayout {
...
@@ -118,6 +118,15 @@ enum BottomNavigationBarLandscapeLayout {
///
///
/// ** See code in examples/api/lib/material/bottom_navigation_bar/bottom_navigation_bar.1.dart **
/// ** See code in examples/api/lib/material/bottom_navigation_bar/bottom_navigation_bar.1.dart **
/// {@end-tool}
/// {@end-tool}
///
/// {@tool dartpad}
/// This example shows [BottomNavigationBar] used in a [Scaffold] Widget with
/// different interaction patterns. Tapping twice on the first [BottomNavigationBarItem]
/// uses the [ScrollController] to animate the [ListView] to the top. The second
/// [BottomNavigationBarItem] shows a Modal Dialog.
///
/// ** See code in examples/api/lib/material/bottom_navigation_bar/bottom_navigation_bar.2.dart **
/// {@end-tool}
/// See also:
/// See also:
///
///
/// * [BottomNavigationBarItem]
/// * [BottomNavigationBarItem]
...
...
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