How to Show List with Divider in Android Jetpack Compose.
| |

How to Show List with Divider in Android Jetpack Compose.

Showing Lists using Jetpack Compose is relatively easy. Having a divider between the items of the list makes the UI neat and clean. Let’s learn how to show lists with a divider between items in Android Jetpack Compose. LazyColumn composable is used to show lists in a more efficient way. There is no built-in way…

How to Create a Simple List in Android Jetpack Compose
| |

How to Create a Simple List in Android Jetpack Compose

Most mobile apps need a way to display lists. Whether you’re showing a feed of social media posts or a list of settings, knowing how to implement this is crucial. In this Jetpack Compose tutorial, you’ll learn how to create a straightforward list of text items in your Android app. Why LazyColumn? LazyColumn and LazyRow…

How to Align UI Elements Horizontally in iOS SwiftUI
|

How to Align UI Elements Horizontally in iOS SwiftUI

SwiftUI provides various UI elements to make iOS development easy. Let’s learn how to align items horizontally in a layout using SwiftUI. Stacks are views that help you to align items vertically, horizontally, and in the z-direction. The HStack accepts children elements and arranges them horizontally. Read- how to align items vertically in iOS app…

How to Align UI Elements Vertically in iOS SwiftUI
|

How to Align UI Elements Vertically in iOS SwiftUI

Building layouts for mobile apps is a complex process. You have to arrange elements properly to make the UI appealing. In this iOS app development tutorial, let’s learn how to align UI elements vertically in SwiftUI. Stack views help developers to arrange items in SwiftUI. VStack is a view in which children are arranged vertically….

How to Add Border with Rounded Corners in iOS SwiftUI
|

How to Add Border with Rounded Corners in iOS SwiftUI

Rounded corners have the capability to make UI elements more beautiful and elegant. Let’s learn how to add borders with rounded corners in SwiftUI. Border() modifier can be used to draw borders around Ui elements. But for rounded corners, you have to use the overlay() modifier. See the code given below. As you see, we…

How to Add Borders in iOS SwiftUI
|

How to Add Borders in iOS SwiftUI

Borders are an important UI element to make your mobile app beautiful. In this iOS app development tutorial, let’s find out how to add borders using SwiftUI. SwiftUI provides a dedicated modifier border() to draw borders around views. See the code given below. Here, it shows a red-colored border with a thickness of 3 around…

How to Create a Hello World iOS app using Swift
| |

How to Create a Hello World iOS app using Swift

This tutorial is for absolute beginners who are about to start iOS app development. Here, I create a simple Hello World iOS mobile app which shows the text hello world. By creating this, you will know how to get started with iOS app development. Make sure that your Mac has the latest Xcode installed. Open…

How to Create a Beautiful Custom Bottom Tab in React Native using React Navigation

Bottom Tabs are considered as an important UI element of mobile apps. They help users to navigate smoothly to the top features of the mobile app without hassles. Here, I am creating a beautiful custom bottom tab navigation using react navigation. React navigation library is the most popular library used for navigation features in react…