Flutter

In this tutorial, we will create a small Flutter function that calls android’s Kotlin native code to read the value of the battery level. Flutter uses a flexible system that allows you to call platform-specific APIs whether available in Kotlin or Java code on Android. Flutter’s built-in platform-specific API support does not rely on code…

Read More Calling Android Native Code in Flutter

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

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