26 lines
570 B
Dart
26 lines
570 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_app/presentation/home_page/home_page.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: ThemeData(
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.black),
|
|
useMaterial3: true,
|
|
),
|
|
home: const MyHomePage(title: 'LOVE REPUBLIC'),
|
|
);
|
|
}
|
|
}
|
|
|
|
|