mirror of
https://github.com/Uttkarsh-raj/Plannerly.git
synced 2024-11-24 08:02:18 +02:00
23 lines
457 B
Dart
23 lines
457 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:plannerly/screens/home/home.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Plannerly',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
debugShowCheckedModeBanner: false,
|
|
home: const HomeScreen(),
|
|
);
|
|
}
|
|
}
|