Skip to content

Commit 5a195d0

Browse files
committed
checkin
1 parent 1354f6c commit 5a195d0

File tree

15 files changed

+26
-26
lines changed

15 files changed

+26
-26
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
flutter_version: [beta]
27+
flutter_version: [stable]
2828
os: [ubuntu-latest, macos-latest, windows-latest]
2929
steps:
3030
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

add_to_app/android_view/flutter_module_using_plugin/lib/cell.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class _CellState extends State<Cell> with WidgetsBindingObserver {
2727
0,
2828
0,
2929
0,
30+
DateTime.now(),
3031
);
3132

3233
int cellNumber = 0;
@@ -119,8 +120,7 @@ class _CellState extends State<Cell> with WidgetsBindingObserver {
119120
child: StreamBuilder<AccelerometerEvent>(
120121
// Don't continuously rebuild for nothing when the
121122
// cell isn't visible.
122-
stream:
123-
appLifecycleState == AppLifecycleState.resumed
123+
stream: appLifecycleState == AppLifecycleState.resumed
124124
? accelerometerEventStream()
125125
: Stream.value(defaultPosition),
126126
initialData: defaultPosition,

add_to_app/android_view/flutter_module_using_plugin/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
sdk: flutter
1212
provider: ^6.1.5
1313
url_launcher: ^6.3.2
14-
sensors_plus: ^5.0.1
14+
sensors_plus: ^6.1.1
1515

1616
dev_dependencies:
1717
analysis_defaults:

add_to_app/android_view/flutter_module_using_plugin/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// tree, read text, and verify that the values of widget properties are correct.
77

88
import 'package:flutter/material.dart';
9-
import 'package:flutter_module_using_plugin/main.dart';
9+
import 'package:flutter_module_using_plugin_android_view/main.dart';
1010
import 'package:flutter_test/flutter_test.dart';
1111
import 'package:provider/provider.dart';
1212

add_to_app/fullscreen/flutter_module/test/widget_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// found in the LICENSE file.
44

55
import 'package:flutter/material.dart';
6-
import 'package:flutter_module/main.dart';
6+
import 'package:flutter_module_fullscreen/main.dart';
77
import 'package:flutter_test/flutter_test.dart';
88
import 'package:provider/provider.dart';
99

add_to_app/fullscreen/flutter_module/test_driver/example.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// found in the LICENSE file.
44

55
import 'package:flutter_driver/driver_extension.dart';
6-
import 'package:flutter_module/main.dart' as app;
6+
import 'package:flutter_module_fullscreen/main.dart' as app;
77

88
// This alternate entrypoint is used for espresso testing. See
99
// https://pub.dev/packages/espresso for details.

add_to_app/plugin/flutter_module_using_plugin/lib/cell.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class _CellState extends State<Cell> with WidgetsBindingObserver {
2727
0,
2828
0,
2929
0,
30+
DateTime.now(),
3031
);
3132

3233
int cellNumber = 0;
@@ -119,8 +120,7 @@ class _CellState extends State<Cell> with WidgetsBindingObserver {
119120
child: StreamBuilder<AccelerometerEvent>(
120121
// Don't continuously rebuild for nothing when the
121122
// cell isn't visible.
122-
stream:
123-
appLifecycleState == AppLifecycleState.resumed
123+
stream: appLifecycleState == AppLifecycleState.resumed
124124
? accelerometerEventStream()
125125
: Stream.value(defaultPosition),
126126
initialData: defaultPosition,

add_to_app/plugin/flutter_module_using_plugin/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
sdk: flutter
1212
provider: ^6.0.2
1313
url_launcher: ^6.0.20
14-
sensors_plus: ^5.0.1
14+
sensors_plus: ^6.1.1
1515

1616
dev_dependencies:
1717
analysis_defaults:

date_planner/lib/event.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Event implements Comparable<Event> {
3939
);
4040
}
4141

42-
updateWith(Event e) {
42+
void updateWith(Event e) {
4343
title = e.title;
4444
color = e.color;
4545
icon = e.icon;

deeplink_store_example/lib/main.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ class MyApp extends StatelessWidget {
3333
routes: [
3434
GoRoute(
3535
path: '/',
36-
builder: (_, __) => const ProductList(),
36+
builder: (_, _) => const ProductList(),
3737
routes: [
38-
GoRoute(path: ':id', builder: (_, __) => const ProductDetails()),
38+
GoRoute(path: ':id', builder: (_, _) => const ProductDetails()),
3939
],
4040
),
4141
GoRoute(
4242
path: '/category/:category',
43-
builder: (_, __) => const ProductCategoryList(),
43+
builder: (_, _) => const ProductCategoryList(),
4444
),
4545
],
4646
),

0 commit comments

Comments
 (0)