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 Toast in SwiftUI

The toast component is an non-disruptive message that appears at the bottom of the interface to provide quick, at-a glance feedback on the outcome of an action Based on UX experience, Toast should only be used for confi...

57
J
Joynal Abedin in

Implement Custom List View in SwiftUI

// // ContentView.swift // CustomListDemo // // Created by Joynal Abedin on 14/2/23. // import SwiftUI struct ListModel: Identifiable { let id = UUID() let name: String let age: Int let gender: Strin...

56
J
Joynal Abedin in

Implement ChatGPT in SwiftUI

Chat GPT // // ContentView.swift // ChatGPTDemo // // Created by Joynal Abedin on 13/2/23. // import SwiftUI import OpenAISwift struct ContentView: View { @ObservedObject var viewModel = ViewModel() @...

57