forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add more potential use case for Bottom Navigation Bar (#99644)
- Loading branch information
Showing
3 changed files
with
161 additions
and
0 deletions.
There are no files selected for viewing
114 changes: 114 additions & 0 deletions
114
examples/api/lib/material/bottom_navigation_bar/bottom_navigation_bar.2.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// 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'), | ||
) | ||
], | ||
), | ||
); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
examples/api/test/material/bottom_navigation_bar/bottom_navigation_bar.2.test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// 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); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters