https://github.com/diggosilva/digimon
A simple iOS application written in Swift, built for practical refresh control and search controller.
https://github.com/diggosilva/digimon
cocoapods ios sdwebimage swift uikit xcode
Last synced: 6 months ago
JSON representation
A simple iOS application written in Swift, built for practical refresh control and search controller.
- Host: GitHub
- URL: https://github.com/diggosilva/digimon
- Owner: diggosilva
- Created: 2025-04-20T13:43:03.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-06-24T12:57:31.000Z (9 months ago)
- Last Synced: 2025-08-13T13:48:39.784Z (7 months ago)
- Topics: cocoapods, ios, sdwebimage, swift, uikit, xcode
- Language: Swift
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Digimon
A simple iOS application written in Swift, built for practical refresh control and search controller.
| Demo | Details | Favorites |
| --- | --- | --- |
|  |  |  |
## Contents
- [Features](#features)
- [Requirements](#requirements)
- [Functionalities](#functionalities)
- [Setup](#setup)
## Features
- View Code (UIKit)
- Refresh Control
- Search Controller
- Modern CollectionView Diffable
- Modern TableView Diffable
- MVVM with Combine
- Await/Async Request
- UserDefaults
- Custom elements
- Dark Mode
- Unit Tests
## Requirements
- iOS 17.0 or later
- Xcode 15.0 or later
- Swift 5.0 or later
## Functionalities
- [x] **Digimon List**: Displays a list of available Digimons for viewing.
- [x] **Digimon Details**: Tapping on a digimon takes the user to a detailed screen with information about it.
- [x] **Favorite Digimon**: Allows the user to favorite a Digimon. This is done using `UserDefaults` to store the favorite digimons.
- [x] **Favorites Page**: Displays all Digimons that the user has favorited. From this page, users can access image and name of each digimon.
- [x] **Remove from Favorites**: From the favorites page, users can remove digimons from their favorites list.
- [x] **Dark Mode Support**: Full support for Dark Mode, offering a more pleasant user experience in different lighting conditions.
- [x] **UIKit Interface**: Utilizes UIKit components for building the user interface.
- [x] **Modern Collections**: Implements `UICollectionViewDiffableDataSource` to optimize data management and UI updates.
- [x] **Modern Tables**: Implements `UITableViewDiffableDataSource` to optimize data management and UI updates.
## Setup
First of all download and install Xcode, Swift Package Manager and then clone the repository:
```sh
$ git@github.com:diggosilva/Digimon.git
```
After cloning, do the following:
```sh
$ cd /Digimon/
$ open Digimon.xcodeproj/
```