Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/satishbabariya/swift-boilerplate
Clean Architecture for iOS projects (Swift + Programmatically UI + MVC + RxSwift + Auto Layout Visual Format + REST + JWT)
https://github.com/satishbabariya/swift-boilerplate
autolayout boilerplate extensions hacktoberfest ios material material-design mvc rxswift swift visualformatlanguage
Last synced: 2 months ago
JSON representation
Clean Architecture for iOS projects (Swift + Programmatically UI + MVC + RxSwift + Auto Layout Visual Format + REST + JWT)
- Host: GitHub
- URL: https://github.com/satishbabariya/swift-boilerplate
- Owner: satishbabariya
- License: mit
- Created: 2019-08-13T08:32:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-04T09:07:29.000Z (about 3 years ago)
- Last Synced: 2024-11-08T02:36:47.761Z (3 months ago)
- Topics: autolayout, boilerplate, extensions, hacktoberfest, ios, material, material-design, mvc, rxswift, swift, visualformatlanguage
- Language: Swift
- Homepage:
- Size: 8.98 MB
- Stars: 23
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Swift Boilerplate
Clean Architecture for iOS projects (Swift + Programmatically UI + RxSwift + Auto Layout Visual Format + REST + JWT)## Folder Structure
```
│ AppDelegate.swift
│ Launcher.swift
│
├───Controllers
│ └───Home
│ HomeController.swift
│ HomeView.swift
│
├───Controls
│ MasterButton.swift
│ MasterLabel.swift
│ MasterScrollView.swift
│ MasterTextField.swift
│
├───Core
│ MasterNavigationController.swift
│ MasterView.swift
│ MasterViewController.swift
│
├───Extensions
│ Dictionary+Extensions.swift
│ Sequence+Extensions.swift
│ String+Extensions.swift
│ UICollectionView+Extensions.swift
│ UITableView+Extensions.swift
│ UIView+Extensions.swift
│
├───Models
│ Todo.swift
│ User.swift
│
├───Resources
│ │ Application+Colors.swift
│ │ Application+Configrations.swift
│ │ Application+Fonts.swift
│ │ Application+Validations.swift
│ │
│ └───Font
│ └───Roboto
│ Roboto-Bold.ttf
│
├───ServerRequests
│ ResponseParser.swift
│ RESTClient.swift
│ RESTUtils.swift
│
├───Services
│ Application.swift
│ MessageManager.swift
│ ReachabilityService.swift
│ UserDefaults.swift
│
└───Utilities
Events.swift
Logger.swift
RxActivity.swift```