mirror of
https://github.com/Uttkarsh-raj/Plannerly.git
synced 2025-11-29 21:57:34 +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(),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|