23 lines
541 B
Dart
Raw Normal View History

2024-11-28 01:43:55 +04:00
import 'package:flutter/material.dart';
2024-12-08 23:43:20 +04:00
import 'package:flutter_labs/presentation/home_page/home_page.dart';
2024-11-28 01:43:55 +04:00
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
2024-12-08 19:13:46 +04:00
@override
2024-11-28 01:43:55 +04:00
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
2024-12-08 19:13:46 +04:00
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
2024-11-28 01:43:55 +04:00
useMaterial3: true,
),
home: const HomePage(title: 'The coolest hamsters on earth ^^'),
2024-11-28 01:43:55 +04:00
);
}
2024-12-10 00:45:38 +04:00
}