APAbir Palinabirpal.hashnode.dev·Sep 25, 2023 · 3 min readHow to build Instagram Story UI using SwiftUIIntroduction: In this tutorial, we will explore how to create a stunning Instagram Story user interface using SwiftUI. Instagram Stories have become an integral part of the platform, allowing users to share photos and videos that disappear after 24 h...00
APAbir Palinabirpal.hashnode.dev·Feb 21, 2023 · 3 min readReadonly (readonly) property in Typescripttype User = { readonly _id: string; name: string; email: string; isActive: boolean; hobbies: string; }; Here we have declared a User type that has properties like _id (readonly) - readonly _id: string; name - name: string; email - emai...00