-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Add cupertino examples to the Floating App Bar recipe. #11821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
examples/cookbook/lists/floating_app_bar/lib/main_cupertino.dart
This file contains hidden or 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,43 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
void main() => runApp(const MyApp()); | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
const title = 'Floating Navigation Bar'; | ||
|
||
return CupertinoApp( | ||
title: title, | ||
home: CupertinoPageScaffold( | ||
// No navigation bar provided to CupertinoPageScaffold, | ||
// only a body with a CustomScrollView. | ||
child: CustomScrollView( | ||
slivers: [ | ||
// Add the navigation bar to the CustomScrollView. | ||
const CupertinoSliverNavigationBar( | ||
// Provide a standard title. | ||
largeTitle: Text(title), | ||
), | ||
// #docregion SliverList | ||
// Next, create a SliverList | ||
SliverList( | ||
// Use a delegate to build items as they're scrolled on screen. | ||
delegate: SliverChildBuilderDelegate( | ||
// The builder function returns a ListTile with a title that | ||
// displays the index of the current item. | ||
(context, index) => | ||
CupertinoListTile(title: Text('Item #$index')), | ||
// Builds 50 ListTiles | ||
childCount: 50, | ||
), | ||
), | ||
// #enddocregion SliverList | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains hidden or 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
20 changes: 20 additions & 0 deletions
20
examples/cookbook/lists/floating_app_bar/lib/starter_cupertino.dart
This file contains hidden or 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,20 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
// #docregion CustomScrollView | ||
return const CupertinoApp( | ||
home: CupertinoPageScaffold( | ||
loic-sharma marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// No navigation bar property provided yet. | ||
child: CustomScrollView( | ||
// Add the navigation bar and list of items as slivers in the next steps. | ||
slivers: <Widget>[], | ||
), | ||
), | ||
); | ||
// #enddocregion CustomScrollView | ||
} | ||
} |
This file contains hidden or 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
31 changes: 31 additions & 0 deletions
31
examples/cookbook/lists/floating_app_bar/lib/step2_cupertino.dart
This file contains hidden or 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,31 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
void main() => runApp(const MyApp()); | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
const title = 'Floating Navigation Bar'; | ||
|
||
return CupertinoApp( | ||
title: title, | ||
home: CupertinoPageScaffold( | ||
// No navigation bar provided to CupertinoPageScaffold, | ||
// only a body with a CustomScrollView. | ||
// #docregion SliverAppBar | ||
child: CustomScrollView( | ||
slivers: [ | ||
// Add the navigation bar to the CustomScrollView. | ||
const CupertinoSliverNavigationBar( | ||
// Provide a standard title. | ||
largeTitle: Text(title), | ||
), | ||
], | ||
), | ||
// #enddocregion SliverAppBar | ||
), | ||
); | ||
} | ||
} |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.