Skip to content
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

Drop "Building a Cupertino app with Flutter" codelab #10085

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/codelabs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,6 @@ Learn how to test your Flutter application.
Learn how to write code that's targeted for specific platforms,
like iOS, Android, desktop, or the web.

* [Building a Cupertino app with Flutter][]<br>
Build a version of the Shrine shopping app
(used in the Material Design codelabs) using the
Cupertino package to create an iOS style look and feel.
Create multiple tabs and navigate between them.
Use the [provider][] package to manage state between screens.

* [How to write a Flutter plugin][]<br>
Learn how to write a plugin by creating a music plugin
for iOS and Android that processes audio on the host platform.
Expand All @@ -303,7 +296,6 @@ like iOS, Android, desktop, or the web.
on iOS. This applies to your home screen, lock screen, or the
today view.

[Building a Cupertino app with Flutter]: {{site.codelabs}}/codelabs/flutter-cupertino
[home-screen]: {{site.codelabs}}/flutter-home-screen-widgets
[How to write a Flutter plugin]: {{site.codelabs}}/codelabs/write-flutter-plugin
[provider]: {{site.pub-pkg}}/provider
Expand Down
6 changes: 0 additions & 6 deletions src/cookbook/design/tabs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ Material Design guidelines.
Flutter includes a convenient way to create tab layouts as part of
the [material library][].

{{site.alert.note}}
To create tabs in a Cupertino app, see the
[Building a Cupertino app with Flutter][] codelab.
{{site.alert.end}}

This recipe creates a tabbed example using the following steps;

1. Create a `TabController`.
Expand Down Expand Up @@ -147,7 +142,6 @@ class TabBarDemo extends StatelessWidget {


[`AppBar`]: {{site.api}}/flutter/material/AppBar-class.html
[Building a Cupertino app with Flutter]: {{site.codelabs}}/codelabs/flutter-cupertino
[`DefaultTabController`]: {{site.api}}/flutter/material/DefaultTabController-class.html
[material library]: {{site.api}}/flutter/material/material-library.html
[`Tab`]: {{site.api}}/flutter/material/Tab-class.html
Expand Down
Loading