1
0
mirror of https://github.com/Uttkarsh-raj/Plannerly.git synced 2025-11-29 21:57:34 +02:00
Files
Plannerly/Frontend/plannerly/lib/main.dart
2023-11-07 21:26:21 +05:30

26 lines
580 B
Dart

import 'package:flutter/material.dart';
import 'package:plannerly/screens/home/home.dart';
import 'package:plannerly/screens/signup/signup.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 SignUpPage(),
);
}
}