24 lines
550 B
Dart
24 lines
550 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:test_app/view/home_page/home_page.dart';
|
||
|
|
||
|
void main() {
|
||
|
runApp(const MyApp());
|
||
|
}
|
||
|
|
||
|
class MyApp extends StatelessWidget {
|
||
|
const MyApp({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return MaterialApp(
|
||
|
title: 'My Test App',
|
||
|
debugShowCheckedModeBanner: false,
|
||
|
theme: ThemeData(
|
||
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
||
|
useMaterial3: true,
|
||
|
),
|
||
|
home: const MyHomePage(title: 'My Test App'),
|
||
|
);
|
||
|
}
|
||
|
}
|