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
SwiftUI How-to VStack fill the width of the screen - SwiftUI public – 1 min read Generally when we use VStack with few views we observed that there is some empty place left, here's how you… Sep 17, 2022 Arturo
SwiftUI How-to Navigation bar in SwiftUI public – 3 min read In iOS 16, SwiftUI got a way to change the navigation bar color with the new modifier, .toolbarBackground Basic usage… Sep 14, 2022 Arturo
Apple How-to Technology How to Install Ruby on Apple M1 Chip public – 2 min read In this quick guide I'll show you the direct steps to install ruby on M1. If you need to run… Aug 24, 2022 Arturo
UIKit Swift How-to UIKit Delegate Protocol Pattern public – 2 min read When you want to communicate between different screens it is very common to use one of the two patterns, either:… Aug 19, 2022 Arturo