Skip to content

Commit 629b4de

Browse files
authored
[sync] 2026/07/09 (#1636)
2 parents 2cc3f2a + 2fb68f0 commit 629b4de

285 files changed

Lines changed: 818 additions & 480 deletions

File tree

Some content is hidden

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

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
36+
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a
3737
with:
3838
languages: ${{ matrix.language }}
3939
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -44,7 +44,7 @@ jobs:
4444
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4545
# If this step fails, then you should remove it and run the build manually (see below)
4646
- name: Autobuild
47-
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
47+
uses: github/codeql-action/autobuild@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a
4848

4949
# ℹ️ Command-line programs to run using the OS shell.
5050
# 📚 https://git.io/JvXDl
@@ -58,4 +58,4 @@ jobs:
5858
# make release
5959

6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
61+
uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a

examples/animation/animate3/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,4 @@ class _LogoAppState extends State<LogoApp> with SingleTickerProviderStateMixin {
6565

6666
// #docregion print-state
6767
}
68-
6968
// #enddocregion print-state

examples/animation/animate4/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,4 @@ class _LogoAppState extends State<LogoApp> with SingleTickerProviderStateMixin {
8484

8585
// #docregion print-state
8686
}
87-
8887
// #enddocregion print-state

examples/animation/animate5/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import 'dart:math';
44

55
// #enddocregion ShakeCurve
6+
67
import 'package:flutter/material.dart';
78

89
void main() => runApp(const LogoApp());
@@ -133,5 +134,4 @@ class ShakeCurve extends Curve {
133134
@override
134135
double transform(double t) => sin(t * pi * 2);
135136
}
136-
137137
// #enddocregion ShakeCurve

examples/app-architecture/command/lib/main.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ class _MainAppState extends State<MainApp> {
8181
// Show Snackbar
8282
}
8383
}
84-
8584
// #enddocregion _onViewModelChanged
8685
}
8786

@@ -175,5 +174,4 @@ class Command extends ChangeNotifier {
175174
_completed = false;
176175
}
177176
}
178-
179177
// #enddocregion Command

examples/app-architecture/command/lib/no_command.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ class _MainAppState extends State<MainApp> {
6969
// Show Snackbar
7070
}
7171
}
72-
7372
// #enddocregion _onViewModelChanged
7473
}
7574

@@ -142,5 +141,4 @@ class HomeViewModel3 extends ChangeNotifier {
142141
// edit user
143142
}
144143
}
145-
146144
// #enddocregion HomeViewModel3

examples/app-architecture/command/lib/simple_command.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,4 @@ class HomeViewModel extends ChangeNotifier {
4040
// load user
4141
}
4242
}
43-
4443
// #enddocregion ViewModel

examples/app-architecture/offline_first/lib/data/repositories/user_profile_repository.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,5 @@ class UserProfileRepository {
142142
// Try again later
143143
}
144144
}
145-
146145
// #enddocregion sync
147146
}

examples/app-architecture/offline_first/lib/data/services/api_client_service.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ class ApiClientService {
2323
// #docregion ApiClientService
2424
}
2525
}
26-
2726
// #enddocregion ApiClientService

examples/app-architecture/offline_first/lib/data/services/database_service.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ class DatabaseService {
2424
// #docregion DatabaseService
2525
}
2626
}
27-
2827
// #enddocregion DatabaseService

0 commit comments

Comments
 (0)