send link to app

MyStuffs - SwiftUI & Firebase app for iPhone and iPad


4.4 ( 3424 ratings )

Developer: Luis Calmon
Free
Current version: 2, last update: 1 year ago
First release : 04 Jan 2021
App size: 6.2 Mb

My Stuffs
SwiftUI Firebase Demo
(https://github.com/luiscalmon/SwiftUI-Firebase-Demo)

A prove of concept iOS app developed in SwiftUI with a Firebase backend.

Backend
The types that interact with Firebase are:

UserManager
All the user account logic is managed here using FirebaseAuth.

FirestoreBackend
This is a generic type where all the persistent logic is implemented using FirebaseFirestore.

No one else type in the app knows about Firebase.

User Interface
The app presents a TabView with a UserView tabItem to manage user account and several Rows tabItem. Rows and complementary Row are generic types that allow reuse the same code for diferents Stuffs.

GenericHelper
GenericHelper is a protocol for conforming type to specialise the generic types.
The conforming types Appointment, Note and Task are used to demonstrate private data accessible just by the owner.
The conforming type Message is used to demonstrate private data updated just by the owner, but publicly read.