ReactiveLists icon indicating copy to clipboard operation
ReactiveLists copied to clipboard

React-like API for UITableView & UICollectionView

Results 21 ReactiveLists issues
Sort by recently updated
recently updated
newest added

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.8 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

Bumps [git](https://github.com/ruby-git/ruby-git) from 1.7.0 to 1.11.0. Release notes Sourced from git's releases. Release v1.11.0 Full Changelog 292087e Supress unneeded test output (#570) 19dfe5e Add support for fetch options "--force/-f" and...

dependencies

Bumps [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) from 1.4.0 to 1.6.3. Release notes Sourced from cocoapods-downloader's releases. 1.6.3 Enhancements None. Bug Fixes None. 1.6.2 Enhancements None. Bug Fixes None. 1.6.1 Enhancements None. Bug Fixes None....

dependencies

## Changes in this pull request Added SPM support. Just added the `Package.swift` so no tests are needed. Issue fixed: #166 ### Checklist - [x] All tests pass. Demo project...

Most of the closures for cells at `() -> Void` https://github.com/plangrid/ReactiveLists/blob/master/Sources/Typealiases.swift#L19-L32 Instead, the should receive the params from the method in which they are called, for example: `typealias DidSelectClosure =...

The accessibility APIs are more part of PlanGrid's codebase than of this particular library. They are a somewhat out of scope as they go beyond just providing a declarative API...

See discussion: https://github.com/plangrid/ReactiveLists/pull/63#discussion_r163934545

bug

`CollectionViewModel.SectionModel` is unnecessarily limited to: ```swift let cellViewModels: [CollectionViewCellViewModel]? let headerViewModel: CollectionViewSupplementaryViewModel? let footerViewModel: CollectionViewSupplementaryViewModel? ``` CollectionViews can have arbitrary supplementary views — they are not limited to headers and...

bug
enhancement

For tables we provide: ```swift var willBeginEditing: WillBeginEditingClosure? { return nil } var didEndEditing: DidEndEditingClosure? { return nil } var editingStyle: UITableViewCellEditingStyle { return .none } var shouldHighlight: Bool {...

bug
enhancement
help wanted