vvrsAppBootcamp / TaskMasterPro

Capstone Project for Week 02
0 stars 0 forks source link

User Story 2: Display a List of Tasks with Categories #2

Open vvr3ddy opened 5 months ago

vvr3ddy commented 5 months ago

As a user, I want to see a list of my tasks categorized by their type so that I can keep track of what I need to do in an organized manner.

Tasks:

  1. Create a Task data class with properties like id, title, isCompleted, category, and priority.
  2. Create a composable function TaskList that takes a list of tasks and displays them using a LazyColumn.
  3. Create a composable function TaskItem to display individual task details, including category and priority.
  4. Implement a simple UI to display a list of sample tasks categorized by their type.