Skip to content

harshita-sl/devlabsFlutter_1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📝 Taskify - Flutter UI

Welcome to Taskify, a simple and clean task management app built using Flutter. It includes screens for login, registration, notes, tasks, and user profile.


📁 Folder Structure

taskify_app/
├── lib/
│   ├── main.dart                     # App entry point
│   ├── app.dart                      # MaterialApp setup & routes
│   ├── config/
│   │   └── theme.dart                # Light/dark themes, colors
│   ├── screens/
│   │   ├── auth/
│   │   │   ├── login_screen.dart
│   │   │   └── register_screen.dart
│   │   ├── home/
│   │   │   └── home_screen.dart
│   │   ├── notes/
│   │   │   └── notes_screen.dart
│   │   ├── profile/
│   │   │   └── profile_screen.dart
│   │   └── splash_screen.dart       # (Optional) for a loading screen
│   ├── widgets/
│   │   ├── task_card.dart
│   │   ├── note_card.dart
│   │   └── custom_text_field.dart   # Reusable form field
│   └── utils/
│       └── constants.dart           # Colors, spacing, fonts etc.
├── assets/
│   └── images/                      # Placeholder images or icons (if any)
├── pubspec.yaml
└── README.md

🚀 Setup Instructions

  1. Clone the repository:
git clone https://github.com/YOUR-USERNAME/taskify_app.git
cd taskify_app
  1. Install dependencies:
flutter pub get
  1. Run the app:
flutter run

📦 Minimum Dependencies (pubspec.yaml)

dependencies:
  flutter:
    sdk: flutter

  cupertino_icons: ^1.0.2
  google_fonts: ^6.2.1
  flutter_svg: ^2.0.10
  provider: ^6.1.2

🤝 Contribution Guidelines

🛠 Steps to Contribute

  1. Fork this repository.
  2. Clone your forked repository:
git clone https://github.com/YOUR-USERNAME/taskify_app.git
  1. Create a new feature branch:
git checkout -b feature/your-feature-name
  1. Make your changes and commit:
git add .
git commit -m "feat: describe your changes"
  1. Push your branch:
git push origin feature/your-feature-name
  1. Open a Pull Request from your branch to the main branch of this repository.

Happy coding! 💙

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 48.3%
  • CMake 39.7%
  • Swift 3.9%
  • C 2.9%
  • HTML 2.5%
  • Dart 2.3%
  • Other 0.4%