Yasuhiro Inami
Yasuhiro Inami
Hi there 👋 This PR adds an improvement in CollectionView (and also TableView)'s drag-drop reordering which **reduces "removed -> inserted" dance (2 calls) into 1 move only (1 call)**. By...
Though animation works nicely for reused views, newly-added or removed views don't get any good visual effects since their frames are either miscalculated (when added) or not even calculated (when...
Hi @TimOliver 👋 Is it possible to control the result image size to be within certain aspect-ratio range? For example, suppose dev wants to have square-ish image (1:1) which can...
This PR is aimed to be able to install Example app in device. - Removed old unused frameworks in xcodeproj - Fixed some framework locations using "Relative to Build Products"...
This PR improves documentation for `BentoReusableView` as follows: - Distinguishes terminology between `contentView` and `containedView` - Describes the relationship with `ViewLifecycleAware` and `ComponentLifecycleAware` - Renames internal method for readability
This is just an example code to improve framework's type signatures. (Note: Test fixes are not included) - `State` should not be constrained by any protocols (especially with associated type)....
See also: #17
## Examples ```diff -let foo = veryLongBooleanFlag1 && - veryLongBooleanFlag2 +let foo = veryLongBooleanFlag1 + && veryLongBooleanFlag2 ``` ```diff -let foo = flag ? - that +let foo = flag...
Change `struct` to `enum` whenever possible that doesn't require `Foo.init()`. ### Example ```diff -struct Foo { +enum Foo { static let bar = Bar() } ```
Hi, I'm using https://github.com/johnno1962/RefactoratorApp and noticed that it's no longer working correctly in Xcode 9, probably due to the new build system. Slightly digging into `DerviedData`, I couldn't find `\(projectName).xcindex/db.xcindexdb`...