mirror of
https://github.com/Uttkarsh-raj/Plannerly.git
synced 2025-12-17 22:07:26 +02:00
25 lines
525 B
Dart
25 lines
525 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,
|
|
),
|
|
darkTheme: ThemeData.dark(),
|
|
themeMode: ThemeMode.dark,
|
|
debugShowCheckedModeBanner: false,
|
|
home: const HomeScreen(),
|
|
);
|
|
}
|
|
}
|