Blog

In this tutorial, you will learn how to determine the current device model in Swift. To determine the current device model in Swift, you can use the utsname struct provided by the Darwin framework, which contains information about the system. This method involves getting the machine hardware description and then mapping it to the corresponding device…

Read More Determine Current Device Model in Swift

In this tutorial, you are going to learn how to add a border around a button in Flutter. For this tutorial, we’ll be focusing on the RaisedButton class in Flutter and editing its properties. RaisedButton RaisedButton widget in Flutter creates Material-specific buttons. It provides two required parameters, onPressed and child, where onPressed takes a function (i.e. what happens…

Read More Add Border Around a Button in Flutter

To present a ViewController in a NavigationController you can wrap ViewController into a NavigationController as it is in the example below. Then present NavigationController which contains ViewController. // Register Nib let newViewController = CustomSignupViewController(nibName: “CustomSignupViewController”, bundle: nil) let navigationController = UINavigationController(rootViewController: newViewController) // Present View “Modally” self.present(navigationController, animated: true, completion: nil)  

Read More Present ViewController in NavigationController

In this tutorial, we will be exploring different techniques to integrate custom fonts into your Flutter projects. Having the ability to use custom fonts can add an extra touch of uniqueness and creativity to your applications, making them stand out from the rest. Throughout this tutorial, we will be discussing two different approaches for incorporating…

Read More Using a Custom Font in Flutter

In this Flutter tutorial, you will learn a few different ways of fetching an image from the Internet. Fetching an image in Flutter is very easy. You can either use a widget or a Provider and wrap it with a widget. Let’s see how it’s done! Using Image.network() Constructor Flutter provides an Image widget to display…

Read More Fetching Image from Internet in Flutter

The BottomNavigationBar is a built-in widget in Flutter that is being widely used in many different mobile apps. It is used to create a bottom navigation bar feature in your mobile app to help users navigate between different app pages. The bottom navigation bar in Flutter can contain multiple items such as text labels, icons, or both.…

Read More Bottom Navigation Bar Example In Flutter

Introduction Data tables are another indispensable part of everyday UI. We can provide information in a clear and concise manner, which is especially helpful owing to the fact that mobile displays are (relatively) small. Today we’ll be covering DataTables in Flutter. The blog is divided into two parts: In Part 1: we go over the basics…

Read More DataTables in Flutter – Explained