Skip to content

Commit

Permalink
Update README.md (#66)
Browse files Browse the repository at this point in the history
* Update README.md

* Update README.md
  • Loading branch information
wendyliga authored Nov 2, 2022
1 parent c20800e commit f5c39e3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@


# RxComposableArchitecture

RxComposableArchitecture is a forked of [Composable Architecture](https://github.com/pointfreeco/swift-composable-architecture) with adjustment to make it work with UIKit.

## What is the differences between RxComposable and TCA
- Use of `RxSwift` instead of `Combine` (to support iOS<13) as the Reactive backbone.
- Use of `HashDiffable` instead of `Identifiable`
- Effect only have 1 generic, doesn't have Error counterpart.
- We are not using `ViewStore`, because on UIKit, we don't need the presence of `ViewStore` yet.

## Composable Architecture

The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. This library is based on PointFree's Swift Composable Architecture.

* [What is the Composable Architecture?](#what-is-the-composable-architecture)
Expand Down Expand Up @@ -299,12 +311,6 @@ Add this into your Podfile
pod "RxComposableArchitecture", , :git => 'https://github.com/tokopedia/RxComposableArchitecture', :tag => '0.17'
```
## What is the differences between RxComposable and TCA
- Use of `RxSwift` instead of `Combine` (to support iOS<13) as the Reactive backbone.
- Use of `HashDiffable` instead of `Identifiable`
- Effect only have 1 generic, doesn't have Error counterpart.
- We are not using `ViewStore`, because on UIKit, we don't need the presence of `ViewStore` yet.
## License
This library is released under the MIT license. See [LICENSE](LICENSE) for details.

0 comments on commit f5c39e3

Please sign in to comment.