Skip to content

Commit 8f4f83b

Browse files
authored
Merge branch 'main' into feat/streamlined-get-started
2 parents 40fe333 + fdacc00 commit 8f4f83b

File tree

10 files changed

+29
-30
lines changed

10 files changed

+29
-30
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Other ways you can contribute:
4444
* [Request docs for docs.flutter.dev][doc-issues]
4545
* [Submit PRs to docs.flutter.dev][doc-PRs]
4646
* [Follow us on Twitter: @flutterdev](https://twitter.com/flutterdev/)
47-
* [Read the Flutter Publication on Medium](https://medium.com/flutter)
47+
* [Read the Flutter Publication on Medium](https://blog.flutter.dev)
4848
* [Sign up to Future UX Studies on Flutter](https://flutter.dev/research-signup)
4949
* [Join the subreddit to keep up with the latest in the Flutter
5050
community][reddit]

firebase.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@
240240

241241
{ "source": "/adoptawidget", "destination": "https://github.com/flutter/flutter/blob/main/CONTRIBUTING.md", "type": 301 },
242242
{ "source": "/apprentice-giveaway", "destination": "https://www.youtube.com/playlist?list=PL4dBIh1xps-HAaadBRWQobCO_IJ4gMOG2", "type": 301 },
243-
{ "source": "/clock", "destination": "https://medium.com/flutter/its-time-the-flutter-clock-contest-results-dcebe2eb3957", "type": 301 },
244-
{ "source": "/create", "destination": "https://medium.com/flutter/the-flutter-create-winners-are-40980f2d20b3", "type": 301 },
243+
{ "source": "/clock", "destination": "https://blog.flutter.dev/its-time-the-flutter-clock-contest-results-dcebe2eb3957", "type": 301 },
244+
{ "source": "/create", "destination": "https://blog.flutter.dev/the-flutter-create-winners-are-40980f2d20b3", "type": 301 },
245245
{ "source": "/assets/images/docs/intellij/hot-reload.gif", "destination": "https://raw.githubusercontent.com/flutter/website/main/src/assets/images/docs/tools/android-studio/hot-reload.gif", "type": 301 },
246246
{ "source": "/brick-breaker", "destination": "https://codelabs.developers.google.com/codelabs/flutter-flame-brick-breaker", "type": 301 },
247247
{ "source": "/catalog/samples", "destination": "https://flutter.github.io/samples/#", "type": 301 },

src/_data/site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ main-api: https://main-api.flutter.dev
3636
pub: https://pub.dev
3737
pub-api: https://pub.dev/documentation
3838
pub-pkg: https://pub.dev/packages
39-
flutter-medium: https://medium.com/flutter
39+
flutter-medium: https://blog.flutter.dev
4040
medium: https://medium.com
4141
dartpad: https://dartpad.dev
4242
gallery-archive: https://flutter-gallery-archive.web.app

src/_includes/banner.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Flutter 3.35 has landed! Get ready for a performance boost and stateful hot reload on the web. <a href="https://medium.com/flutter/whats-new-in-flutter-3-35-c58ef72e3766" target="_blank">Learn more</a><br>
1+
Flutter 3.35 has landed! Get ready for a performance boost and stateful hot reload on the web. <a href="https://blog.flutter.dev/whats-new-in-flutter-3-35-c58ef72e3766" target="_blank">Learn more</a><br>

src/content/deployment/flavors.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -143,27 +143,26 @@ the following steps:
143143
1. Start an Android emulator or connect a physical device
144144
with developer options enabled.
145145

146-
1. In the console, navigate to the `flavors_example`
147-
directory and enter the following command:
146+
1. In the console, navigate to the `flavors_example`
147+
directory and enter the following command:
148148

149-
```console title="console"
150-
$ flutter (run | build) --flavor <flavor_name>
151-
```
149+
```console title="console"
150+
$ flutter (run | build <subcommand>) --flavor <flavor_name>
151+
```
152152

153-
* `(run | build)`: Replace this with one of the
154-
following:
155-
* `run`: Run the app in debug mode.
156-
* `build`: Run the app in production mode.
153+
* `(run | build <subcommand>)`: Replace this with one of the following:
154+
* `run`: Runs the app in debug mode.
155+
* `build`: Builds either an APK or an appbundle.
156+
* `<subcommand>`: Either `apk` or `appbundle`.
157157

158-
* `<flavor_name>`: Replace this with the name of your
159-
Android product flavor (for example, `staging` or
160-
`production`).
158+
* `<flavor_name>`: Replace this with the name of your Android
159+
product flavor (for example: `staging`, `production`).
161160

162-
Example:
161+
Example:
163162

164-
```console title="console"
165-
$ flutter run --flavor staging
166-
```
163+
```console title="console"
164+
$ flutter build apk --flavor staging
165+
```
167166

168167
## Customize configurations
169168

@@ -361,4 +360,4 @@ the following resources:
361360
* [How to Setup Flutter & Firebase with Multiple Flavors using the FlutterFire CLI][flutterfireCLI]
362361
363362
[Build flavors in Flutter (Android and iOS) with Firebase]: {{site.medium}}/@animeshjain/build-flavors-in-flutter-android-and-ios-with-different-firebase-projects-per-flavor-27c5c5dac10b
364-
[flutterfireCLI]: https://codewithandrea.com/articles/flutter-firebase-multiple-flavors-flutterfire-cli/
363+
[flutterfireCLI]: https://codewithandrea.com/articles/flutter-firebase-multiple-flavors-flutterfire-cli/

src/content/get-started/flutter-for/react-native-devs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,11 +529,11 @@ and widgets allows you to reuse the components within the app.
529529

530530
### How do I create reusable components?
531531

532-
In React Native, you would define a class to create a
532+
In React Native, you would define a function (or a class) to create a
533533
reusable component and then use `props` methods to set
534534
or return properties and values of the selected elements.
535-
In the example below, the `CustomCard` class is defined
536-
and then used inside a parent class.
535+
In the example below, the `CustomCard` function is defined
536+
and then used inside a parent component.
537537

538538
```js
539539
// React Native

src/content/llms.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This file provides a curated list of resources to help Large Language Models und
1818
## Latest release
1919

2020
- [Announcing Flutter 3.35](https://medium.com/flutter/whats-new-in-flutter-3-35-c58ef72e3766): The official announcement for the 3.35 release.
21-
- [Announcing Dart 3.9](https://medium.com/dartlang/announcing-dart-3-9-ba49e8f38298): The official announcement for the 3.9 release.
21+
- [Announcing Dart 3.9](https://blog.dart.dev/announcing-dart-3-9-ba49e8f38298): The official announcement for the 3.9 release.
2222

2323
## Learning resources
2424

@@ -173,7 +173,7 @@ This file provides a curated list of resources to help Large Language Models und
173173
- [Flutter blog](https://medium.com/flutter): The official blog for the Flutter project.
174174
- [Flutter release notes](https://docs.flutter.dev/release/release-notes): Detailed notes on what's new in each release.
175175
- [Flutter breaking changes and migration guides](https://docs.flutter.dev/release/breaking-changes): Documentation for breaking changes with each release along with guides for migrating code across a breaking change.
176-
- [Dart blog](https://medium.com/dartlang): The official blog for the Dart language.
176+
- [Dart blog](https://blog.dart.dev): The official blog for the Dart language.
177177
- [Dart breaking changes](https://dart.dev/resources/breaking-changes): A list of breaking changes for each Dart release.
178178

179179
## API reference

src/content/perf/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,4 +455,4 @@ For more performance info, check out the following resources:
455455
[Performance optimizations]: {{site.api}}/flutter/widgets/AnimatedBuilder-class.html#performance-optimizations
456456
[Performance considerations for opacity animation]: {{site.api}}/flutter/widgets/Opacity-class.html#performance-considerations-for-opacity-animation
457457
[`RenderObject`]: {{site.api}}/flutter/rendering/RenderObject-class.html
458-
[best-practices-medium]: https://medium.com/flutter/best-practices-for-optimizing-flutter-web-loading-speed-7cc0df14ce5c
458+
[best-practices-medium]: https://blog.flutter.dev/best-practices-for-optimizing-flutter-web-loading-speed-7cc0df14ce5c

src/content/release/release-notes/release-notes-0.0.21-1.0.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ _This page is a dump of the old Changelog page from the Flutter wiki up until
106106
## Changes in v0.6.0 (since v0.5.1) - beta 6
107107

108108
### v0.6.0
109-
* Dart SDK updated to a Dart 2 build (2.1.0-dev.0.0). Package and plugin authors should ensure their `pubspec.yaml` files include a Dart SDK constraint with an upper bound of `<3.0.0`. See the [Getting ready for Dart 2 post](https://medium.com/dartlang/getting-ready-for-dart-2-and-making-your-packages-look-great-on-the-pub-site-118464d7f59d) for details.
109+
* Dart SDK updated to a Dart 2 build (2.1.0-dev.0.0). Package and plugin authors should ensure their `pubspec.yaml` files include a Dart SDK constraint with an upper bound of `<3.0.0`. See the [Getting ready for Dart 2 post](https://blog.dart.dev/getting-ready-for-dart-2-and-making-your-packages-look-great-on-the-pub-site-118464d7f59d) for details.
110110
* [#19025](https://github.com/flutter/flutter/pull/19025) renamed `CupertinoRefreshControl` to `CupertinoSliverRefreshControl` for consistency.
111111
* [#19317](https://github.com/flutter/flutter/pull/19317) Add cursorWidth and cursorRadius to TextField (Material) cursor.
112112
* [#20116](https://github.com/flutter/flutter/pull/20116) reduced release binary sizes by ~2MB

src/content/release/release-notes/release-notes-1.12.13.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ check out this [TweenAnimationBuilder video](https://www.youtube.com/watch?reloa
11431143

11441144
## Web
11451145

1146-
We increased our support for web, moving it from the dev channel to the beta channel. For more details, please check [web support blog post](https://medium.com/flutter/web-support-for-flutter-goes-beta-35b64a1217c0).
1146+
We increased our support for web, moving it from the dev channel to the beta channel. For more details, please check [web support blog post](https://blog.flutter.dev/web-support-for-flutter-goes-beta-35b64a1217c0).
11471147

11481148
[37819]({{site.repo.flutter}}/pull/37819) Add HtmlElementView (the Flutter Web platform view)
11491149

0 commit comments

Comments
 (0)