A very poorly designed SwiftUI application by some non-CS undergrad students at UCSD
catchup
A very poorly designed SwiftUI application by some non-CS undergrad students at UCSD.
Katherine Wong & John Adams
Documentation for Understanding Application Files and Functions
View Interactions
NavigationView Structure:
GroupsView {GroupsRowView <- ListViewModel}
ListView {ListRowView <- ListViewModel}
AddView
Basic Functionality
- Setup
- Initialize
ListViewModel
(read/import stored data) - Create
NavigationView
and openGroupsView
- Initialize
- GroupsView
ScrollView
with aNavigationLink
toListView
for each group of people (currently only includes family list)- Call
GroupsRowView(personModel)
to display the first 4 members of theListViewModel
- ListView
- Call
ListRowView
to build a list of all people in the selected group- List object encapsulates people, with
.onDelete
&.onMove
for editing the list of people
- List object encapsulates people, with
.navigationBarItems
includesNavigationLink
toAddView
- Call
- AddView
- two strings for
personModel.name
and contactpersonModel.frequency
initilized empty - create text fields for the two strings
- ask permission for notification usage
- add people with
listViewModel.addPerson(newPerson: person)
- two strings for