Mobile

Using Stack and IndexedStack in Flutter

Updated: March 24, 2023 By: A Goodman

Flutter offers a lot of built-in widgets that can help us make gorgeous applications without writing too much code or installing too many third-party libraries just for building user interfaces. In this article, we will take…

How to render HTML content in React Native

Updated: March 15, 2022 By: A Goodman

There are times when you need to render HTML in React Native, such as when you are making a news app with articles fetched from APIs provided by a backend shared with another website. There are…

React Native FlatList: Tutorial and Examples

Updated: January 8, 2023 By: A Goodman

React Native core provides many built-in components that can help us create native mobile applications for Android and iOS. In this article, we’ll have a look at the FlatList component and walk through 2 complete examples…

Flutter ConstrainedBox – Tutorial and Examples

Updated: March 24, 2023 By: Guest Contributor

ConstrainedBox is a built-in widget of Flutter that lets you specify the maximum or minimum width and height of its child widget. In this tutorial, you’ll learn how to use the ConstrainedBox widget through some quick…

Working with CheckBox in React Native

Updated: January 8, 2023 By: A Goodman

This article shows you a couple of different ways to implement checkboxes in React Native applications. For Expo-based projects, you should use the expo-checkbox package. For React Native CLI projects, you can use the @react-native-community/checkbox library…

How to implement tables in React Native

Updated: January 8, 2023 By: A Goodman

Tables help us display information neatly and elegantly in rows and columns. In this article, you will learn how to implement tables in React Native by using three different libraries: react-native-paper, react-native-table-component, react-native-easy-grid. Without any further…

How to set a gradient background in React Native

Updated: March 15, 2022 By: A Goodman

This article shows you how to implement a gradient background in both Expo and bare React Native (or old React Native CLI) projects. At the time of writing, React Native doesn’t officially support linear gradients, so…

Top 4 open-source React Native UI libraries in 2024

Updated: March 6, 2024 By: Guest Contributor

React Native is an open-source mobile framework that helps you build Android and iOS apps using Javascript. First launched in 2015, React Native is thriving and used by many major apps like Facebook, Instagram, Walmart, Tesla,…

Flutter Cupertino Button – Tutorial and Examples

Updated: March 24, 2023 By: A Goodman

Flutter has libraries with lots of built-in widgets like Material and Cupertino. If you want to make an app that your target audience is iPhone and iPad users, then you’ll probably want to use the Cupertino…

Implementing a Date Time picker in React Native

Updated: February 12, 2023 By: A Goodman

In the old days, DatePickerIOS, DatePickerAndroid, and TimePickerAndroid components used to be used to create Date and Time pickers in React Native applications, but nowadays, these ones are deprecated. At the time of writing, using react-native-datetimepicker/datetimepicker…

Using RichText and TextSpan in Flutter

Updated: March 24, 2023 By: A Goodman

Every website and mobile app, more or less, contains text. In Flutter, you can display a paragraph text that has multiple different styles by using a RichText widget and a tree of TextSpan widgets in combination….

Working with Table in Flutter

Updated: January 30, 2023 By: A Goodman

Tables help us to display information in a clear and concise manner. In this article, we’ll take a look at the Table widget in Flutter and walk through 3 different examples of implementing it in mobile…

1 25 26 27 28 29 46