Stories Worth Reading

Ideas that inspire,
code that delights.

Discover thoughtful articles, tutorials, and perspectives from developers who love what they build.

5+ Stories
43 Topics
Ideas

Recent Stories

J
Joynal Abedin in

Custom TabBar SwiftUI

let’s start with the Tabbar. For each tab bar item, we need a title, image, and selected image. So we need to create a struct name TabItemData. struct TabItemData { let image: String let selectedImage: String ...

55
J
Joynal Abedin in

Onboarding in SwiftUI

First of all create a new struct Model Named \"Card\": import SwiftUI import Foundation struct Card: Identifiable { var id = UUID() // var image: String var title : String var description : Strin...

56