App Designing Fundamentals

 Tips: Check out Pinterest to get some ideas about app design. Choose your color theme. 

Software we are using to App Design is : Adobe XD 

File > New > Select iPhone X/XS/11 Pro 

1. Write a notes about general structure about how your app is gonna be. 

Building App from scratch 

  • user should be able to add deadline to a task 
  • user wants to see tasks that have a deadline today 
Screens 
1. Intray 
  • should be able to add tasks here 
  • should automatically remove items when deadline have been set 
  • when removing items
  1. if no project then add it to uncategorised 
  2. if project then add to project 
  • should be able to decide whether it is a project or task 
2. Today/week/month/year 
  • should show all the tasks that are due this day/week/month/year 
  • should be the over task and on tap show subtasks 
3. Projects 
  • list of projects 
  • should be able to create new projects 
4. Completed 
  • Show list of completed tasks 
  • should be able to sort by date old, date new, project 
5. Profile 
  • profile info 

Classes 

SupportFile: 
    String text;

Projects:
    List<Task> tasks;
    List<SupportFile> supportFile;
    String projectId;
    String projectName;
    Date deadline;
    Date reminder;

Task:
    List<Task> tasks;
    String note;
    Date timeToComplete;
    bool completed;
    String repeats;
    Date deadline;
    Date reminder;
    String taskId;



    

Comments

Popular Posts