Basem
Basem
Yes, that was actually another option that crossed my mind! Blurring would look real elegant and the fading would ensure words would show up in various scenarios I think.
Awesome, thx again for an amazing framework! BTW, you made my top 10 CocoaPods list :) http://basememara.com/top-10-swift-friendly-cocoapods/
The only thing I don't like is the namespace for the framework: `import AlertOnboarding_iOS` For using`import AlertOnboarding`, the project has to be recreated so that the example app is not...
I have a PR here #9. I've been using it via Carthage and works great, but maybe you can confirm?
This is still an issue. According to the other thread, does minizip have to be fixed or configured properly in the master branch?
Check out my pull request (#81) and see if that works for everyone (including @MaxHasADHD too). It adds an extended version of `registerDefaults`. I updated the readme docs and added...
It would be great to add this to CocoaPods, which would handle the Swift integration automatically.
Hi @naoty, thanks for the great library and recent update! I like this enhancement and was going to create a PR, but it was kind of tricky due to months...
Not my favorite API but we can do something like this also: ``` extension Date { func minus(_ date: Date, to component: Calendar.Component) -> TimeInterval? { guard component != .month...
This is great, thx for sharing! I used this to overload the nil coalescing operator: ```swift public func ??(optional: Binding, defaultValue: T) -> Binding { Binding( get: { optional.wrappedValue ??...