This project is an app designed to create a shared drawing experience between two users, using a predefined set of pens and colors. Built with UIKit following the MVC architectural pattern.
- UIKit for interface development
- SharePlay for user-to-user connection
- PencilKit for drawing tools
- Combine
- GroupActivities
EcosystemChallenge/
│
├── Models/ # Data and logic (e.g., User)
│ └── User.swift
│
├── HomeScreen/
│ ├── HomeView.swift # UI (buttons, labels, collection views)
│ └── HomeViewController.swift # Logic and events (actions, navigation)
│
├── Resources/ # Assets, LaunchScreen, Info.plist, etc.
│
├── Utils/ # Helper code and useful extensions
│
├── AppDelegate.swift
└── SceneDelegate.swift

