Skip to content

Commit 9e296b6

Browse files
sfshaza2antfitchparlough
authored
[3.35] Updating what's new (#12255)
Co-authored-by: Amanda Fitch <[email protected]> Co-authored-by: Parker Lougheed <[email protected]>
1 parent f697212 commit 9e296b6

File tree

3 files changed

+81
-35
lines changed

3 files changed

+81
-35
lines changed

src/content/platform-integration/android/sensitive-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class MyWidget extends StatelessWidget {
4747
}
4848
```
4949

50-
When running on Android API 34 and below, the screen will not been obscured
50+
When running on Android API 34 and below, the screen will not be obscured
5151
during media projection. The widget will exist in the tree but has no other
5252
effect, and you do not need to avoid usages of `SensitiveContent` on platforms
5353
that do not support this feature.

src/content/release/archive-whats-new.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,46 @@ description: >-
55
and related documentation sites.
66
---
77

8-
This page contains of archived announcements of
8+
This page contains archived announcements of
99
what's new on the Flutter website and blog.
1010
For information on the latest releases,
1111
check out the [current what's new][] page.
1212

1313
[current what's new]: /release/whats-new
1414

15+
## 12 February 2025: 3.29 release
16+
17+
Flutter 3.29 is live! For more information,
18+
check out the [Flutter 3.29 technical blog post][3.29-tech].
19+
You might also check out the [Dart 3.7 release][] blog post.
20+
21+
[3.29-tech]: {{site.medium}}/flutter/whats-new-in-flutter-3-29-f90c380c2317
22+
[Dart 3.7 release]: {{site.medium}}/dartlang/announcing-dart-3-7-bf864a1b195c
23+
24+
**Docs updated or added since the 3.27 release**
25+
26+
* As Flutter evolves, so do its internals. The
27+
[Architectural overview page][] is updated.
28+
29+
* For those of you coming from Android development
30+
who are familiar with Jetpack Compose, please visit
31+
[Flutter for Jetpack Compose devs][].
32+
33+
* A new cookbook recipe is added for testing a
34+
widget's orientation, [Test orientation][].
35+
36+
* Also, don't forget to check out the [breaking changes][bc-3.29]
37+
page for this release. That's also where you'll find useful
38+
migration info.
39+
40+
[Architectural overview page]: /resources/architectural-overview
41+
[bc-3.29]: /release/breaking-changes#released-in-flutter-3-29
42+
[Dart 3.7 release]: {{site.medium}}/dartlang/announcing-dart-3-7-bf864a1b195c
43+
[Flutter for Jetpack Compose devs]: /get-started/flutter-for/compose-devs
44+
[Test orientation]: /cookbook/testing/widget/orientation
45+
46+
---
47+
1548
## 11 December 2024: 3.27 release
1649

1750
Flutter 3.27 is live! For more information,

src/content/release/whats-new.md

Lines changed: 46 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,52 @@ and review the [Dart changelog][].
2323
[flutter-announce]: {{site.groups}}/forum/#!forum/flutter-announce
2424
[release notes]: /release/release-notes
2525

26+
## 13 August 2025: Release 3.35
27+
28+
Flutter 3.35 is live! For more information,
29+
check out the [Flutter 3.35 technical blog post][3.35-tech].
30+
You might also check out the [Dart 3.9 release][] blog post.
31+
32+
[3.35-tech]: {{site.flutter-medium}}/whats-new-in-flutter-3-35-c58ef72e3766
33+
[Dart 3.9 release]: {{site.medium}}/dartlang/announcing-dart-3-9-ba49e8f38298
34+
35+
**Docs updated or added since the 3.32 release**
36+
37+
* Hot reload is now available on the web and no longer
38+
requires an experimental flag. For more information,
39+
check out [hot reload][].
40+
41+
* There is a new [Create with AI][] guide which covers
42+
how you can leverage AI tools like Gemini Code Assist,
43+
GeminiCLI, and the Dart and Flutter MCP Server to build
44+
AI-powered features for your Flutter apps.
45+
46+
* You can now use the [Flutter Widget Previewer][] guide
47+
to help you view a preview of your Flutter widgets in
48+
Chrome.
49+
50+
* Each stable release affects which versions of
51+
deployed platforms that Flutter supports.
52+
For more information, visit the updated
53+
[supported platforms][] page.
54+
55+
* On Android, you can now protect sensitive content,
56+
such as customer information, when you share your screen.
57+
Learn more by visiting [Protect your app's sensitive content][].
58+
59+
* Also, don't forget to check out the [breaking changes][bc-3.35]
60+
page for this release. That's also where you'll find useful
61+
migration info.
62+
63+
[Flutter Widget Previewer]: /tools/widget-previewer
64+
[Create with AI]: /ai/create-with-ai
65+
[bc-3.35]: /release/breaking-changes#released-in-flutter-3-35
66+
[hot reload]: /tools/hot-reload
67+
[Protect your app's sensitive content]: /platform-integration/android/sensitive-content
68+
[supported platforms]: /reference/supported-platforms
69+
70+
---
71+
2672
## 20 May 2025: Google I/O release 3.32
2773

2874
Flutter 3.32 is live! For more information,
@@ -88,39 +134,6 @@ so you might have already noticed some of them:
88134

89135
---
90136

91-
## 12 February 2025: 3.29 release
92-
93-
Flutter 3.29 is live! For more information,
94-
check out the [Flutter 3.29 technical blog post][3.29-tech].
95-
You might also check out the [Dart 3.7 release][] blog post.
96-
97-
[3.29-tech]: {{site.medium}}/flutter/whats-new-in-flutter-3-29-f90c380c2317
98-
[Dart 3.7 release]: {{site.medium}}/dartlang/announcing-dart-3-7-bf864a1b195c
99-
100-
**Docs updated or added since the 3.27 release**
101-
102-
* As Flutter evolves, so do its internals. The
103-
[Architectural overview page][] is updated.
104-
105-
* For those of you coming from Android development
106-
who are familiar with Jetpack Compose, please visit
107-
[Flutter for Jetpack Compose devs][].
108-
109-
* A new cookbook recipe is added for testing a
110-
widget's orientation, [Test orientation][].
111-
112-
* Also, don't forget to check out the [breaking changes][bc-3.29]
113-
page for this release. That's also where you'll find useful
114-
migration info.
115-
116-
[Architectural overview page]: /resources/architectural-overview
117-
[bc-3.29]: /release/breaking-changes#released-in-flutter-3-29
118-
[Dart 3.7 release]: {{site.medium}}/dartlang/announcing-dart-3-7-bf864a1b195c
119-
[Flutter for Jetpack Compose devs]: /get-started/flutter-for/compose-devs
120-
[Test orientation]: /cookbook/testing/widget/orientation
121-
122-
---
123-
124137
For past releases, check out the
125138
[What's new archive][] page.
126139

0 commit comments

Comments
 (0)