2023-10-29 19:38:17 +05:30
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:plannerly/screens/home/home.dart';
|
2023-11-07 21:26:21 +05:30
|
|
|
import 'package:plannerly/screens/signup/signup.dart';
|
2023-10-29 19:38:17 +05:30
|
|
|
|
|
|
|
|
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,
|
|
|
|
|
),
|
2023-11-04 22:24:46 +05:30
|
|
|
darkTheme: ThemeData.dark(),
|
|
|
|
|
themeMode: ThemeMode.dark,
|
2023-10-29 19:38:17 +05:30
|
|
|
debugShowCheckedModeBanner: false,
|
2023-11-07 21:26:21 +05:30
|
|
|
home: const SignUpPage(),
|
2023-10-29 19:38:17 +05:30
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|