-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Add cupertino examples to the Floating App Bar recipe. #11821
Merged
+364
−140
Merged
Changes from 2 commits
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
41 changes: 41 additions & 0 deletions
41
examples/cookbook/lists/floating_app_bar/lib/main_cupertino.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,41 @@ | ||
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.builder( | ||
// The builder function returns a ListTile with a title that | ||
// displays the index of the current item. | ||
itemBuilder: | ||
(context, index) => | ||
CupertinoListTile(title: Text('Item #$index')), | ||
// Builds 50 ListTiles | ||
itemCount: 50, | ||
), | ||
// #enddocregion SliverList | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
examples/cookbook/lists/floating_app_bar/lib/starter_cupertino.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,21 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
// #docregion CustomScrollView | ||
return const CupertinoApp( | ||
title: 'Floating Navigation Bar', | ||
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 | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
examples/cookbook/lists/floating_app_bar/lib/starter_material.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,21 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
// #docregion CustomScrollView | ||
return const MaterialApp( | ||
title: 'Floating App Bar', | ||
home: Scaffold( | ||
// No app bar property provided yet. | ||
body: CustomScrollView( | ||
// Add the app bar and list of items as slivers in the next steps. | ||
slivers: <Widget>[], | ||
), | ||
), | ||
); | ||
// #enddocregion CustomScrollView | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
examples/cookbook/lists/floating_app_bar/lib/step2_cupertino.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,29 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
void main() => runApp(const MyApp()); | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const CupertinoApp( | ||
title: 'Floating App Bar', | ||
home: CupertinoPageScaffold( | ||
// No navigation bar provided to CupertinoPageScaffold, | ||
// only a body with a CustomScrollView. | ||
child: CustomScrollView( | ||
// #docregion SliverAppBar | ||
slivers: [ | ||
// Add the navigation bar to the CustomScrollView. | ||
const CupertinoSliverNavigationBar( | ||
// Provide a standard title. | ||
largeTitle: Text('Floating App Bar'), | ||
), | ||
], | ||
// #enddocregion SliverAppBar | ||
), | ||
), | ||
); | ||
} | ||
} |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: ListTile should be CupertinoListTile here and on line 32
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!