20 lines
404 B
Dart
20 lines
404 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:witl/home_screen.dart';
|
|
|
|
void main() => runApp(const MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: "Entry Point",
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
home: const HomeScreen(),
|
|
);
|
|
}
|
|
}
|