We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d1114 commit bd7ab20Copy full SHA for bd7ab20
bloc_flutter/integration_test/app_test.dart
@@ -13,7 +13,7 @@ void main() {
13
ReactiveLocalStorageRepository(
14
repository: LocalStorageRepository(
15
localStorage: KeyValueStorage(
16
- 'simple_bloc_test_${DateTime.now().toIso8601String()}',
+ 'bloc_flutter_test_${DateTime.now().toIso8601String()}',
17
await SharedPreferences.getInstance(),
18
),
19
bloc_flutter/lib/widgets/todo_item.dart
@@ -9,6 +9,7 @@ class TodoItem extends StatelessWidget {
9
final Todo todo;
10
11
const TodoItem({
12
+ super.key,
required this.onDismissed,
required this.onTap,
required this.onCheckboxChanged,
0 commit comments