SwiftUI How-to Update views on ForEach using StateObject - SwiftUI public – 1 min read One of the beautiful things about SwiftUI is its useful managed state, by using an environment we can have live… Sep 23, 2022 Arturo
SwiftUI How-to How to ask the user to review your app public – 1 min read iOS 16+ If you import StoreKit into your SwiftUI app, you’ll gain access to an environment key called requestReview,… Sep 22, 2022 Arturo
SwiftUI How-to Share content using the system share sheet - SwiftUI public – 1 min read iOS 16+ SwiftUI’s ShareLink view makes it easy to share any kind of data from your app, as long… Sep 22, 2022 Arturo
SwiftUI How-to How to let the user paste data into your app public – 1 min read iOS 16+ SwiftUI has a dedicated PasteButton view that lets us receive any kind of data that conforms to the… Sep 22, 2022 Arturo
SwiftUI How-to Enable text selection for non-editable text public – 1 min read To enable text selection for SwiftUI Text views we can use textSelection() modifier and set it to enabled. This modifier… Sep 18, 2022 Arturo
SwiftUI How-to How to hide the home indicator - SwiftUI public – 1 min read iOS 16+ To Hide Bottom home indicator line on SwiftUI use .persistentSystemOverlays(.hidden). It also support animation. First it will… Sep 17, 2022 Arturo