Round is an iOS/Android application that utilizes Google Firebase for the backend, and Flutter for the frontend.
Algorithms
Round implements a sorting algorithm to display a non-invasive view of all times a group's members are busy. This will allow them to have a visual representation of general available days/times, without any extra details such as what the event times actually contain (Round only stores the start and end times of each event). Additionally, Round has the capacity to determine the next available time for a potential meeting by using these stored event times as references.
Class DiagramsDiagram 1 - Classes Related to Calendar Creation, Display, and Integration
Diagram 1 shows all the UML for the classes related to creation, maintenance, and display of the calendars within Round. As can be seen, there are not many external dependencies save from a utility class called Appointments that is seen throughout, and library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. CalendarSelection is a Stateless Widget, and as a result does not have that relationship.
Diagram 2 - Classes Related to Code Generation, Usage, and Display (both QR and String)
Diagram 2 shows all the UML for the classes related to creation, maintenance, and display of both String and QR codes within Round. Library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. DisplayCode, NewQR, and Display are Stateless Widgets, and as a result does not have that relationship.
Diagram 3 - Classes Related to Group Creation, Display, and Usage
Diagram 3 shows all the UML for the classes related to creation, maintenance, and display of the groups within Round. As can be seen, there are not many external dependencies shown within the diagram except a utility class called Appointments that is also seen in Diagram 1. Library imports, which are not included for cleanliness, can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This is further explained in Diagram 8.
Diagram 4 - Classes Related to the Onboarding Process
Diagram 4 shows all the UML for the classes related to creation, maintenance, and display of the onboarding process within Round. Library imports, which are not included for cleanliness, can be seen in diagram 7. Also note the typical ClassState inherits from Class relationship is not here, and instead these classes comprise entirely of Stateless Widgets.
Diagram 5 - Classes Related to User Settings
Diagram 5 shows all the UML for the classes related to creation, maintenance, and display of the user settings within Round, as well as the generation of custom events not associated with any calendar. As can be seen, there are not many external dependencies, and library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8.
Diagram 6 - Classes Related to the User's Individual Homepage and Usage
Diagram 6 shows all the UML for the classes related to creation, maintenance, and display of Round itself, and the user's individual home page. As can be seen, there are not many external dependencies, and library imports are not included for cleanliness. These can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. RoundApp is a Stateless Widget, and as a result does not have that relationship.
Diagram 7 - Dependencies Between all Classes seen in Diagrams 1-6
Diagram 7 shows the dependendencies of all classes seen in Diagrams 1-6, and how they are all connected within each other, and the libraries used. As can be seen in the diagram, there are many libraries that are consistently used, and these are due to them being core components throughout the application. Other dependencies, while not seemingly as critical, are still very important due to having unique but critical functionality within Round. Note that all libraries labelled "External Library" are used persistently throughout the entire application. Other external libraries, such as BarcodeScanner, are not labeled as such, but are included in every instance of their usage. This was done to clean up the diagram and make it easier to read.
Diagram 8 - General Relationship Between State, StatefulWidget, and the way classes utilize them.
Diagram 8 shows the relationship between ClassState and Class that has been mentioned in Diagrams 1-6. Both of these rely on libraries within the Flutter framework to work, however the relationship is consistently the same for all Stateful Widgets, which is why it was deemed better to save this relationship for it's own diagram rather than overcomplicate the previous diagrams.
Sequence DiagramsUse Case 1: Registration
Use case 1 shows the registration process. This process allows the user to create an account with Round, which is then used throughout the rest of the application. The process will be user friendly, and accessible throughout onboarding.
Use Case 2: First-Time Login
Use case 2 shows the login process for when a user is already registered. If they are logging in for the first time, they will have to enter their email and password. However, if they are logging in after having previously done so, their state is saved so they do not have to consistently log in every time the application was opened. This decision was made due to the overall goal of Round to make group planning and creation as streamlined as possible, with the hopes of allowing all the maintenance of groups to be done within a minute of intiation.
Use Case 3: Group Creation
Use case 3 shows the sequence of events needed to create a group. Once the user is logged in, all they need to do is press the create group button, follow the prompts for information, and then the group is created. This group can then be sent to other members to allow them to also join the group, which is highlighted further in Use case 4.
Use Case 4: Invite Other Users
Use case 4, as briefly mentioned above, shows how other users can join a previously created group. Once said group is initialized, the original user has to present the QR code or generated code to any other users they want to join the group. Once these codes are input by the other users, they have joined the group, and Round is able to account for their information.
Use Case 5: Time Block Selection
Use case 5 is a relatively complicated scenario, but explains how time blocks are created. In summary, the founding user creates the group and invites all other users to the group. Once that is done, the users can choose to integrate their Google calendar so the event start and end times are saved for future reference (no other personal data is ever stored in regards to event information, solely the start and end times). Afterwards, any user may choose to ask for a meeting time to be generated, in which Round will then use all stored events to find the next best time for a meeting between all users.
Use Case 6: Last Second Changes
Use case 6 shows what would happen if a time was chosen, and then another user realizes they cannot attend that meeting. Upon realization, the user just needs to notify Round through a button press. Round will then pick the next best day to have a meeting. Round will always pick another day entirely, under the assumption that if someone is unable to make a meeting time due to a last minute change, then the change likely has an unknown end time on that day, so a new day altogether is the best chance for a successful meeting.
Use Case 7: Push Notifications and Reminders
Use case 7 shows how push notification would affect users in Round. Due to the unexpected complexity of push notifications, this was not included in the current version of Round, but it is a very possible feature to be implemented in the future. What would happen is Round would load the upcoming meeting time, and send notifications to the users in a timely manner to allow them to know the state of the meeting, such as if it was cancelled or delayed. Additionally, there would be reminders sent out to the users to assist them with managing their schedule for all groups associated with Round.