From 4eee81fe2fd22e4d6a6ef40730e944d9dd720f7f Mon Sep 17 00:00:00 2001 From: sofia7ya Date: Tue, 10 Dec 2024 11:59:36 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=B1=D0=BC=D0=B5=D0=BD=20=D1=85=D0=BE?= =?UTF-8?q?=D0=BC=D0=B8=D0=BA=D0=BE=D0=B2=20=D0=B8=20=D0=BE=D0=B4=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/main.dart | 2 +- lib/presentation/home_page/home_page.dart | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 0446d80..f6def57 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -16,7 +16,7 @@ class MyApp extends StatelessWidget { colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), - home: const MyHomePage(title: 'The coolest hamsters on earth ^^'), + home: const HomePage(title: 'The coolest hamsters on earth ^^'), ); } } diff --git a/lib/presentation/home_page/home_page.dart b/lib/presentation/home_page/home_page.dart index 6898488..8f42688 100644 --- a/lib/presentation/home_page/home_page.dart +++ b/lib/presentation/home_page/home_page.dart @@ -5,16 +5,16 @@ import 'package:flutter_labs/domain/models/card.dart'; part 'card.dart'; -class MyHomePage extends StatefulWidget { - const MyHomePage({super.key, required this.title}); +class HomePage extends StatefulWidget { + const HomePage({super.key, required this.title}); final String title; @override - State createState() => _MyHomePageState(); + State createState() => _HomePageState(); } -class _MyHomePageState extends State { +class _HomePageState extends State { final Color _color = Colors.orangeAccent; @override @@ -39,7 +39,7 @@ class Body extends StatelessWidget { descriptionText: 'hahaha', icon: Icons.abc, imageUrl: - 'https://sun34-1.userapi.com/impg/_DLT-op0LbBdgh5h-ILvC7IMDY5kbLR349v7vA/tX7vtk6mNlA.jpg?size=736x736&quality=96&sign=47f2b0f63bf249c62f4498fb637695d5&type=album'), + 'https://sun9-26.userapi.com/impg/sB_tLPWPCIqxQWmlbcmlRYiw1ibFb70_QMtNwg/56qpyc_C8Go.jpg?size=736x711&quality=95&sign=8f7163b54538a2e7bad5f36a857485d4&type=album'), CardData('mouse2', descriptionText: 'ahahaha', icon: Icons.access_alarm_outlined, @@ -49,7 +49,7 @@ class Body extends StatelessWidget { descriptionText: 'eeee', icon: Icons.access_alarm_rounded, imageUrl: - 'https://sun9-26.userapi.com/impg/sB_tLPWPCIqxQWmlbcmlRYiw1ibFb70_QMtNwg/56qpyc_C8Go.jpg?size=736x711&quality=95&sign=8f7163b54538a2e7bad5f36a857485d4&type=album'), + 'https://sun34-1.userapi.com/impg/_DLT-op0LbBdgh5h-ILvC7IMDY5kbLR349v7vA/tX7vtk6mNlA.jpg?size=736x736&quality=96&sign=47f2b0f63bf249c62f4498fb637695d5&type=album'), ]; return Center(