How to Set Background Color for Flutter Column

How to Set Background Color for Flutter Column

In this blog post, we discuss something that many of us take for granted, setting the background color of a Column in Flutter. Though the Column widget doesn’t have a direct property for this, there are workarounds to help you achieve your desired look. The Column Widget and Its Limitations The Column widget in Flutter…

Jetpack Compose Text: A Complete Guide
| |

Jetpack Compose Text: A Complete Guide

Welcome to this all-encompassing guide on Jetpack Compose Text! Jetpack Compose has revolutionized the way we think about UI development in Android. With a more intuitive and functional approach, it offers a wide range of tools to manage and style text. Whether you’re a seasoned developer or just getting started, this guide will walk you…

How to Create Hyperlink in SwiftUI Text
|

How to Create Hyperlink in SwiftUI Text

Navigating the digital landscape, hyperlinks have always been the bridges connecting one piece of content to another. They’re fundamental to the user experience. With the introduction of SwiftUI and its support for markdown in text views, creating hyperlinks has never been more seamless. In this post, we’ll uncover how to embed hyperlinks within SwiftUI text…

How to Add Custom Fonts to Your Xcode Project
|

How to Add Custom Fonts to Your Xcode Project

The default fonts available in Xcode are good, but sometimes you need a specific font to make your iOS app stand out or adhere to a brand’s guidelines. Adding custom fonts to your Xcode project might seem daunting at first, but it’s actually quite straightforward. In this blog post, I will walk you through the…

How to Add List Inside a Sheet Properly in SwiftUI
|

How to Add List Inside a Sheet Properly in SwiftUI

In SwiftUI, sheets are a convenient way to present secondary views or modals. While adding a list inside a sheet is straightforward, it can introduce some interaction issues, especially when the sheet is resizable. In this blog post, we’ll explore how to add a list inside a sheet properly in SwiftUI, ensuring smooth scrolling and…

How to Create Translucent Background for a Sheet in SwiftUI
|

How to Create Translucent Background for a Sheet in SwiftUI

In SwiftUI, sheets are a versatile way to present secondary views or modals. While sheets come with a default background color, there might be scenarios where you want to make the background translucent. This can add a layer of depth to your UI and make it more visually appealing. In this blog post, we’ll explore…