
EduCard
Flashcard revision applicaiton
EduCard is a mobile app to help students with revision created based on a provided specification. It allows the user to have multiple subjects with each subject having multiple sets of questions. The user can customise their questions and topics and have them save to their device.

Visual Studio

Xamarin
About the project
Specification
You are to build a cross-platform (Android and iOS) application in C# using Xamarin.Forms to maintain groups of flashcards to help with revision on different topics.
There shall be groups of flashcards, grouped by subject, which present questions and can reveal answers. These will all be listed and organised using at least one ListView.
Each flashcard will have a question and an answer that can be revealed using a UI gesture of your choosing.
The design, look and feel is your decision. It is suggested a group list view or hierarchy of list views are suitable paradigms.
For this exercise, there is no requirement to implement user authentication.
​
Time frame: 2 months
Suggested group size: 2
Actual group size: 1
About the app
User Interface and Navigation
- Hierarchy of pages created
- Uses ListViews and standard cells
- Can read all data
- Can delete cards and topics (subject deletion not implemented)
- Can reveal answers with switch
- Can add cards, topics and subjects
- Button at top to save locally to the device
- Images added
- Reused cells for example in making a new card and editing an old one.
C.R.U.D and persistence
- No online servers used
- Text file stores information locally
- Does not save automatically to a local text file but does make changes to the database
- No error handling for text inputs so could cause errors
Software Architecture
- Access modifiers are appropriate
- Binding present between view and viewmodel
- Not all bindings work
- MVVM attempted
- Some UnitTests present