Skip to content

Commit a8e873a

Browse files
authored
[sync] 2025/02/13 (#1544)
ref #374 - Flutter 3.29 正式发布
2 parents 6c90c44 + c48b2e2 commit a8e873a

File tree

931 files changed

+13655
-14242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

931 files changed

+13655
-14242
lines changed

.github/workflows/build.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
include:
2626
- name: "Beta channel"
2727
branch: beta
28-
experimental: true
28+
experimental: false
2929
- name: "Stable channel"
3030
branch: stable
31-
experimental: false
31+
experimental: true
3232
continue-on-error: ${{ matrix.experimental }}
3333
steps:
3434
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
@@ -60,7 +60,7 @@ jobs:
6060
submodules: recursive
6161
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
6262
with:
63-
sdk: stable
63+
sdk: beta
6464
- name: Fetch Dart dependencies
6565
run: dart pub get
6666
- name: Check if excerpts are up to date
@@ -77,8 +77,8 @@ jobs:
7777
with:
7878
submodules: recursive
7979
- name: Enable Corepack
80-
run: corepack enable
81-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
80+
run: npm i -g corepack@latest && corepack enable
81+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a
8282
with:
8383
node-version: ${{ env.NODE_VERSION }}
8484
cache: 'pnpm'
@@ -88,7 +88,7 @@ jobs:
8888
run: pnpm install --frozen-lockfile
8989
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
9090
with:
91-
sdk: stable
91+
sdk: beta
9292
- name: Fetch Dart dependencies
9393
run: dart pub get
9494
- name: Build site
@@ -111,7 +111,7 @@ jobs:
111111
submodules: recursive
112112
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
113113
with:
114-
sdk: stable
114+
sdk: beta
115115
- name: Fetch Dart dependencies
116116
run: dart pub get
117117
- name: Validate the firebase.json file
@@ -133,7 +133,7 @@ jobs:
133133
fetch-depth: 0
134134
- name: Enable Corepack
135135
run: corepack enable
136-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
136+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a
137137
with:
138138
node-version: ${{ env.NODE_VERSION }}
139139
cache: 'pnpm'
@@ -143,7 +143,7 @@ jobs:
143143
run: pnpm install --frozen-lockfile
144144
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
145145
with:
146-
sdk: stable
146+
sdk: beta
147147
- name: Fetch Dart dependencies
148148
run: dart pub get
149149
- name: Build site

.github/workflows/stage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828
- name: Enable Corepack
2929
run: corepack enable
30-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
30+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a
3131
with:
3232
node-version: ${{ env.NODE_VERSION }}
3333
cache: 'pnpm'
@@ -37,7 +37,7 @@ jobs:
3737
run: pnpm install --frozen-lockfile
3838
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
3939
with:
40-
sdk: stable
40+
sdk: beta
4141
- name: Fetch Dart dependencies
4242
run: dart pub get
4343
- name: Build site

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ Happy Fluttering!
6060
[doc-PRs]: https://github.com/flutter/website/pulls
6161
[so]: https://stackoverflow.com/tags/flutter
6262
[mailinglist]: https://groups.google.com/d/forum/flutter-dev
63-
[chat]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md
63+
[chat]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
6464
[reddit]: https://www.reddit.com/r/FlutterDev

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ and we'll try our best to help you.
306306
You can also chat with us on the `#hackers-devrel` channel
307307
on the [Flutter contributors Discord][]!
308308

309-
[Flutter contributors Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md
309+
[Flutter contributors Discord]: https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
310310

311311
### Refresh code excerpts
312312

diagrams/resources/web-framework-diagram.drawio

+133
Large diffs are not rendered by default.

examples/_animation/basic_hero_animation/lib/main.dart

+5-17
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,15 @@ class BasicHeroAnimation extends StatelessWidget {
1212
@override
1313
Widget build(BuildContext context) {
1414
return Scaffold(
15-
appBar: AppBar(
16-
title: const Text('Basic Hero Animation'),
17-
),
15+
appBar: AppBar(title: const Text('Basic Hero Animation')),
1816
body: Center(
1917
child: InkWell(
2018
onTap: () {
2119
Navigator.of(context).push(
2220
MaterialPageRoute<void>(
2321
builder: (context) {
2422
return Scaffold(
25-
appBar: AppBar(
26-
title: const Text('Flippers Page'),
27-
),
23+
appBar: AppBar(title: const Text('Flippers Page')),
2824
body: Container(
2925
padding: const EdgeInsets.all(8),
3026
alignment: Alignment.topLeft,
@@ -34,9 +30,7 @@ class BasicHeroAnimation extends StatelessWidget {
3430
tag: 'flippers',
3531
child: SizedBox(
3632
width: 100,
37-
child: Image.asset(
38-
'images/flippers-alpha.png',
39-
),
33+
child: Image.asset('images/flippers-alpha.png'),
4034
),
4135
),
4236
),
@@ -48,9 +42,7 @@ class BasicHeroAnimation extends StatelessWidget {
4842
// Main route
4943
child: Hero(
5044
tag: 'flippers',
51-
child: Image.asset(
52-
'images/flippers-alpha.png',
53-
),
45+
child: Image.asset('images/flippers-alpha.png'),
5446
),
5547
),
5648
),
@@ -59,9 +51,5 @@ class BasicHeroAnimation extends StatelessWidget {
5951
}
6052

6153
void main() {
62-
runApp(
63-
const MaterialApp(
64-
home: BasicHeroAnimation(),
65-
),
66-
);
54+
runApp(const MaterialApp(home: BasicHeroAnimation()));
6755
}

examples/_animation/basic_hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
66
resolution: workspace
77
environment:
8-
sdk: ^3.6.0
8+
sdk: ^3.7.0-0
99

1010
dependencies:
1111
flutter:

examples/_animation/basic_radial_hero_animation/lib/main.dart

+19-24
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,15 @@ class Photo extends StatelessWidget {
2525
color: Theme.of(context).primaryColor.withValues(alpha: 0.25),
2626
child: InkWell(
2727
onTap: onTap,
28-
child: Image.asset(
29-
photo,
30-
fit: BoxFit.contain,
31-
),
28+
child: Image.asset(photo, fit: BoxFit.contain),
3229
),
3330
);
3431
}
3532
}
3633

3734
class RadialExpansion extends StatelessWidget {
38-
const RadialExpansion({
39-
super.key,
40-
required this.maxRadius,
41-
this.child,
42-
}) : clipRectExtent = 2.0 * (maxRadius / math.sqrt2);
35+
const RadialExpansion({super.key, required this.maxRadius, this.child})
36+
: clipRectExtent = 2.0 * (maxRadius / math.sqrt2);
4337

4438
final double maxRadius;
4539
final double clipRectExtent;
@@ -55,9 +49,7 @@ class RadialExpansion extends StatelessWidget {
5549
child: SizedBox(
5650
width: clipRectExtent,
5751
height: clipRectExtent,
58-
child: ClipRect(
59-
child: child,
60-
),
52+
child: ClipRect(child: child),
6153
),
6254
),
6355
);
@@ -69,15 +61,21 @@ class RadialExpansionDemo extends StatelessWidget {
6961

7062
static double kMinRadius = 32;
7163
static double kMaxRadius = 128;
72-
static Interval opacityCurve =
73-
const Interval(0.0, 0.75, curve: Curves.fastOutSlowIn);
64+
static Interval opacityCurve = const Interval(
65+
0.0,
66+
0.75,
67+
curve: Curves.fastOutSlowIn,
68+
);
7469

7570
static RectTween _createRectTween(Rect? begin, Rect? end) {
7671
return MaterialRectCenterArcTween(begin: begin, end: end);
7772
}
7873

7974
static Widget _buildPage(
80-
BuildContext context, String imageName, String description) {
75+
BuildContext context,
76+
String imageName,
77+
String description,
78+
) {
8179
return Container(
8280
color: Theme.of(context).canvasColor,
8381
alignment: FractionalOffset.center,
@@ -102,7 +100,10 @@ class RadialExpansionDemo extends StatelessWidget {
102100
}
103101

104102
Widget _buildHero(
105-
BuildContext context, String imageName, String description) {
103+
BuildContext context,
104+
String imageName,
105+
String description,
106+
) {
106107
return SizedBox(
107108
width: kMinRadius * 2,
108109
height: kMinRadius * 2,
@@ -141,9 +142,7 @@ class RadialExpansionDemo extends StatelessWidget {
141142
timeDilation = 20.0; // 1.0 is normal animation speed.
142143

143144
return Scaffold(
144-
appBar: AppBar(
145-
title: const Text('Basic Radial Hero Animation Demo'),
146-
),
145+
appBar: AppBar(title: const Text('Basic Radial Hero Animation Demo')),
147146
body: Container(
148147
padding: const EdgeInsets.all(32),
149148
alignment: FractionalOffset.bottomLeft,
@@ -161,9 +160,5 @@ class RadialExpansionDemo extends StatelessWidget {
161160
}
162161

163162
void main() {
164-
runApp(
165-
const MaterialApp(
166-
home: RadialExpansionDemo(),
167-
),
168-
);
163+
runApp(const MaterialApp(home: RadialExpansionDemo()));
169164
}

examples/_animation/basic_radial_hero_animation/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >-
66
77
resolution: workspace
88
environment:
9-
sdk: ^3.6.0
9+
sdk: ^3.7.0-0
1010

1111
dependencies:
1212
flutter:

0 commit comments

Comments
 (0)