fixed warnings

This commit is contained in:
Sergey Penkovsky
2025-05-16 17:57:40 +03:00
parent 7740717fce
commit 0c5db63961
4 changed files with 17 additions and 12 deletions

View File

@@ -3,6 +3,8 @@ import 'package:cherrypick_flutter/cherrypick_flutter.dart';
import 'use_case.dart';
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
@override
Widget build(BuildContext context) {
// Разрешение зависимости UseCase из рутового скоупа
@@ -11,7 +13,7 @@ class MyHomePage extends StatelessWidget {
return Scaffold(
appBar: AppBar(
title: Text('Example App'),
title: const Text('Example App'),
),
body: Center(
child: Text(useCase.fetchData()),