×
×

About: Naresh Pradeep

Website
Profile
Hey there! I am the founder of CodesInsider and android developer.I love to code and build apps.

Posts by Naresh Pradeep:


Flutter

Flutter OutlinedButton Example Tutorial

In flutter, we will use OutlinedButton to display a simple button. It is nothing but a TextButton with outline border. It is the replaced version of OutlineButton widget as the…


Flutter

Flutter ElevatedButton Example Tutorial

In flutter, we will use ElevatedButton widget to display a simple button. It is the replaced version of RaisedButton widget as the RaisedButton widget will deprecate soon. It is one…


Flutter

Flutter TextButton Example Tutorial

In flutter, we will use TextButton widget to display a simple button. It is the replaced version of FlatButton widget as the FlatButton widget will be deprecated soon. It is…


Flutter

Flutter IconButton Example Tutorial

In flutter, IconButton acts just like FlatButton or RaisedButton but with an icon instead of a regular button. In this example tutorial, we will learn how to use an IconButton…


Flutter

Flutter FloatingActionButton Example Tutorial

Flutter FloatingActionButton FloatingActionButton is a material widget in flutter that appears above the content of the screen. Generally, a floating action button is positioned at the bottom right corner of…


Flutter

Flutter Dropdown Button / Dropdown List Example

In this tutorial, we will learn how to use a dropdown button or dropdown list in flutter. We will also customize its style using different properties and create an example.…


Flutter

Flutter ButtonBar Example Tutorial

In this Flutter buttonBar widget example tutorial we will learn how to use a ButtonBar in flutter and its properties in detail with example. Flutter ButtonBar Flutter button bar is…


Flutter

Flutter Using RaisedButton Widget Example Tutorial

In flutter, RaisedButton widget is one of the most used flutter widgets from material library. In this example tutorial we will learn how to use a RaisedButton in flutter and…


Flutter

How to Use FlatButton Widget in Flutter

Flutter FlatButton Widget The FlatButton widget in flutter is used to display a simple button. It is one of the most used widgets in flutter. The button when pressed will…


Flutter

Flutter TextField Widget Example Tutorial

Flutter TextField widget TextField in flutter is nothing but a widget used to accept input from the user. While designing applications we need to accept input from the users. Screens…


Flutter

Flutter RichText Widget Tutorial With Hyperlink

Flutter RichText Widget The RichText widget in flutter is useful to display text in multiple styles. If we apply a style to a text widget, it will reflect the entire…


Flutter

Flutter Text Widget Example Tutorial

Flutter Text Widget Text widget is one of the most used widgets in flutter. To display text in flutter applications we have to use a text widget. We can’t imagine…


Flutter

Flutter Widgets – Basics You Need to Know

What Are Widgets In Flutter ? Flutter widgets are nothing but, the user interface controls. Designing a user interface is way different from Views in Android or UI Views in…


Flutter

Flutter Container Widget Example Tutorial

Flutter Container Widget Container in flutter is nothing but a widget that acts as a container for other widgets. In other words, we can say it is used to hold…


Flutter

How to display image from network/internet URL in flutter app

In this tutorial, we will learn how to display image from the internet URL in the flutter app. To display network images, flutter has a built-in method Image.network(). Displaying images…


Flutter

How to add images in flutter app

In this tutorial, we will learn how to add images to flutter app. Nowadays we can’t imagine an application without images. We will use images while designing some flutter layouts.…


Flutter

Flutter Row And Column Widgets

Flutter Row and Column Row and Column widgets are very useful in designing Flutter Layouts. We can do most of the layout designs using row and Column widgets. We will…


Flutter

How to Install Flutter with Visual Studio Code

In this tutorial you will learn how to install flutter with visual studio code in windows, mac & ubuntu.This tutorial mainly focuses on how to configure visual studio code with…


Android

Android Date Time Picker Dialog Example Tutorial

Android date time picker are used to select date and time in many android applications.In this tutorial we will see how to implement date picker and time picker to select…


Android

Android Radio Button Example Tutorial

Android radio button is commonly used in applications especially while filling forms where a user have to select only one option from the list of options shown to the user(Eg:…