Vitaly Batrakovvbat.dev·Oct 27, 2024Coordinators & SwiftUIIf you prefer to watch video you can find it here. Hey iOS folks, With the release of iOS 18, many teams are likely moving towards adopting iOS 16 as the new minimum, bringing newer SwiftUI features, such as NavigationStack, into focus. Opinions on S...Discuss·2.5K readsiOS
thevenkatapplelens.hashnode.dev·Oct 18, 2024🌟 SwiftUI Spacer: Flexible Space Made Simple! 🌟A Spacer in SwiftUI is a flexible layout tool that creates space between views, adjusting dynamically to fill available space. It’s commonly used to create adaptive designs! 🛠️ How It Works:The Spacer grows to take up any remaining space within a ...DiscussSwiftUIiOS
thevenkatapplelens.hashnode.dev·Oct 17, 2024Understanding Padding in SwiftUI: A Simple GuideIt's adding extra space around the object. It can adjust dynamically based on your text content. Basic Example with Padding: Text("Hello World..!") .padding() // Adds default padding on all sides .background(Color.cyan) This will add defaul...Discuss·28 readsSwiftUIiOS
thevenkatapplelens.hashnode.dev·Oct 11, 2024LazyHGrid and LazyVGrid: Everything You Need to KnowIntroduction: LazyHGrid and LazyVGrid are components in SwiftUI that allow you to create grid layouts efficiently. They are "lazy" because they only render the views that are currently visible on the screen, which helps improve performance, especiall...DiscussSwiftUIiOS
Amit GorasiyaforSaasAble Blogblog.saasable.io·Oct 11, 2024How to Reduce UI Design Time with SaasAbleAs a SaaS developer or designer, you’re no stranger to the challenges of creating user interfaces that are both functional and visually appealing. The process is often time-consuming, requiring attention to detail and repeated iterations to get it ju...Discuss·1 like·325 readsSaas Able LaunchWeb Development
thevenkatapplelens.hashnode.dev·Oct 9, 2024Mastering SwiftUI Stacks for Better App LayoutsVStack: Use the VStack to arrange views in a vertical layout. struct ContentView: View { var body: some View { VStack(spacing: 20) { Text("Hello, Developer!") .font(.title) .foregroundColor(.bl...Discuss·45 readsSwiftUIiOS
varun pullurvarunpullur.hashnode.dev·Sep 5, 2024Mastering RxSwift: A Comprehensive ManualReactive Programming is programming with asynchronous data streams. It enables building apps in a declarative way. Everything in RxSwift is an observable sequence or something that subscribes to the events emitted by those observable sequences. O...Discuss·4 likes·79 readsRxSwift
Sravan Goudtsra0ne.hashnode.dev·Aug 3, 2024Integrating SwiftUI into UIKitIn this section, we will demonstrate how to integrate SwiftUI views into UIKit using UIHostingController and adding SwiftUI views directly to UIKit components. Using UIHostingController UIHostingController is a UIViewController subclass that can host...DiscussSwift
Norhan BoghdadiforKlivvrblog.klivvr.com·Jul 15, 2024Migrating from UIKit to SwiftUIHow It All Started The spark for our migration journey ignited when we set out to revamp our application with a stunning new design. We aimed to not only refresh the user experience but also embrace the latest advancements in iOS development. It was ...Discuss·1 like·236 readsDevelopmentUIkit
Swift Insightsblog.ganukeperera.com·Jun 7, 2024Exploring the New UIContentUnavailableView by AppleWelcome to my tech blog! Today, I'll introduce you to a recently introduced feature by Apple: the UIContentUnavailableView. This built-in view is designed to display when your app's content is unavailable. There are two common scenarios where this ca...Discuss·1 likeSwift