1
0
mirror of https://github.com/Uttkarsh-raj/Plannerly.git synced 2025-12-11 22:07:14 +02:00

ui home page done

This commit is contained in:
Uttkarsh-raj
2023-10-29 19:38:17 +05:30
parent 98d4eda293
commit 332aad0cec
130 changed files with 4954 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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(),
);
}
}