Published inAppMakers.DEV·Mar 29Int16, Int32, and Int64 in Swift: Key DifferencesChoosing the right integer data types is crucial for optimizing the performance of your iOS apps. In Swift, Int16, Int32, and Int64 are three essential integer types that allow you to store signed integer values. …Swift2 min readSwift2 min read
Feb 26How to Stay Awake While Programming: Tips for Avoiding SleepinessAs a programmer, staying focused and alert is key to getting your work done efficiently and effectively. However, it’s easy to get caught up in long coding sessions and start feeling sleepy and unfocused. …Programming2 min readProgramming2 min read
Sep 25, 2021Neon App Icons for iPhone and iPadMeet Neon Green — Neon App Icons for iPhone and iPad pack with: 190 Icons in 2 Styles (120 General Icons and 70 Popular Apps and Social Networks Icons) Get Neon App Icon Pack Here On iOS14 and iOS15, you can customise your app icons on iPhone and iPad using Shortcuts App. Customise your Home Screen using this iOS 15 App Icon Pack.Ios 152 min readIos 152 min read
Sep 23, 2021How to Change App Icons on iOS 15Here is how to change app icons on your iPhone or iPad on iOS 15: On your iPhone or iPad on the Home Screen swipe to the bottom to open Search and type Shortcuts. Tap on Shortcuts to open the Shortcuts appIOS3 min readIOS3 min read
Oct 16, 2020Black and White App Icon Pack for iPhone and iPadBlack and White App Icon Pack for iPhone and iPad includes : 190 Icons in 4 Styles (120 General Icons and 70 Popular Apps and Social Networks Icons) Get Icon Pack Here: Black and White App Icons Set Starting iOS 14, you can customise your app icons on iPhone and iPad using Shortcuts App. Customise your Home Screen using this iOS 14 App Icon Pack.Ios 142 min readIos 142 min read
Oct 14, 2020How to change app icons with shortcuts on your iPhone or iPad on iOS 14Starting iOS 14, you can change app icons with Shortcuts app. In this article I’ll show you How to change app icons with shortcuts on your iPhone or iPad on iOS 14 This story was originally published on ChangeAppIcons.com To change app icons with shortcuts on your iPhone or iPad…Apps3 min readApps3 min read
Published inAppMakers.DEV·Sep 4, 2020SwiftUI LabelSwiftUI Label represents a combination of an icon and a label. In this tutorial you will learn about how to create a Label in SwuftUI This story was originally published on AppMakers.Dev How to create a SwiftUI Label struct LabelView: View { var body: some View { Label("I am a Label", systemImage: "flame") } } Creating a title-only Label This…Swiftui2 min readSwiftui2 min read
Published inAppMakers.DEV·Sep 2, 2020Learn how to create a SwiftUI TabView in Default StyleLearn how to create a SwiftUI TabView in Default Style This story was originally published on AppMakers.Dev SwiftUI TabView is a view that switches between multiple child views using interactive user interface elements. TabView in SwiftUI can have a Default and a Page Style. This example discloses creating a…Swiftui1 min readSwiftui1 min read
Published inAppMakers.DEV·Sep 2, 2020SwiftUI TabView with PaginationLearn how to create a SwiftUI TabView with Pagination This story was originally published on AppMakers.Dev SwiftUI TabView is a view that switches between multiple child views using interactive user interface elements. SwiftUI TabView can have a Default and a Page Style. A Page Style is useful for Onboarding screens and other Pagination functionality. TabView { // TabView Code for Each Tab } .tabViewStyle(PageTabViewStyle())IOS1 min readIOS1 min read
Published inAppMakers.DEV·May 5, 2020NavigationView in SwiftUILearn how to use — NavigationView in SwiftUI — a view for presenting a stack of views representing a visible path in a navigation hierarchy. This story was originally published on AppMakers.Dev How to create a NavigationView in SwiftUI Let’s create a simple NavigationView using SwiftUI. NavigationView { List { Text("Item1") Text("Item2") Text("Item3") }.navigationBarTitle(Text("ContentView")) }Swiftui2 min readSwiftui2 min read