Customize formatted currency amount in iOS 15
June 14, 2021This year at WWDC 2021, Foundation framework got an interesting update with a Swifty AttributedString but also new Formatting API. You can…
Written by Thomas Sivilay building apps from Sydney 🌅 at twentyseven.app Follow on Twitter
This year at WWDC 2021, Foundation framework got an interesting update with a Swifty AttributedString but also new Formatting API. You can…
WWDC2020 offered a new suite of Views, one interesting one is which allow us to delay the initialization of some content only when needed…
SwiftUI views has a ViewModifier that allows us to present a modal view based on a state .isPresented which is a Bool. What happened when…
How do you build your layout? Are you using auto layout? Frame calculations? Interface builder? I think we’ve all try different approaches…
For many years I’ve been relying on Cocoapods as a dependency manager, which works fine and it’s also widely adopted. But with Xcode 11, SPM…
Recently I wanted to drive a SwiftUI view content based on a , it became pretty common to use an to represent the different state of a View…
Creating view isn’t hard with SwiftUI, we can quickly iterate to build our final . But what if we would like to display it on top of our…
Let’s see how we can bridge SwiftUI and UIKit to allow ourself to use which gives us the ability to let the user select a photo from his…
On iOS13 you might start to have your app, or have seen other apps having this issue where the large title animation isn’t animating…
SwiftUI doesn’t provide yet a or something similar to but I tried to experiment with different Views to have something close to a…
Base on Modernizing Your UI for iOS 13 - WWDC 2019 in iOS13 the new way to customise your navigation bar is to use . It also gives you more…
The goals of this article is to show how to: Use by conforming to UIRepresentableView in SwiftUI Show an array of annotations using and…