Hilal Ahmad
Latest stories
More stories
-
Firebase Realtime Database CRUD Operations for Flutter Project
In this post, you will learn about firebase realtime database crud operation for flutter project. The Firebase realtime database is NoSQL, which means we don’t have the traditional columns and rows. In the firebase realtime database we can store data in JSON tree structure like below. In this post we will create an app in […] More
-
How to Create Animated Buttons in Flutter Example
In this post you will learn how to create animated buttons in flutter example, we will be using a flutter package for button animation which is flutter_animated_buttons. First of al create new flutter project, if you don’t know how to create one then watch the below video. After creating new flutter project open pupspec.yaml file, […] More
-
Firebase Realtime Database Android CRUD Operations in Java
Hey guys, here is the complete Firebase Realtime Database Android with Java guide. Firebase realtime database is NoSQL database which means we don’t have the traditional columns and rows. In firebase realtime database we can store data in the form of JSON tree structure like below. In this post we will create an app in […] More
-
Firebase Realtime Database Android CRUD Operations in Kotlin
Hey guys, here is the complete Firebase Realtime Database Android with Kotlin guide. Firebase realtime database is NoSQL database which means we don’t have the traditional columns and rows. In firebase realtime database we can store data in the form of JSON tree structure like below. In this post we will create an app in […] More
-
How to Download and Install Node.js, NPM on Windows 10
In this post, I will show you how to download and install node.js and NPM on windows 10. What is Node.js? Node.js is a run-time environment that includes everything you need to execute a program written in JavaScript. It runs scripts on the server to render content before it is delivered to a web browser. […] More
-
How to Use Material 3 in the Flutter Project With Example
In this post, I will show you how to use Material 3 or Material You in your flutter project, by default flutter is using a material design that is the previous version but now we have Material 3 latest material design from Google. As we all know flutter 3.0 is out now and it supports the […] More
-
Flutter Toast Message Example Tutorial
Toast is a flash message in a flutter, which displays some information to the user for a limited time and it appears at the bottom of the screen and disappears. Generally, we use a flutter toast message to notify the user about some status of action performed. For example, the use sign-in to the app successfully […] More
-
How to Add Back Button to Toolbar Android
In this post you will learn how to add the back button to toolbar android, We use the toolbar back button to go back in our application. create a new project in android studio First of all we need to add second activity in our project like below Open activity_second.xml and paste […] More
-
How to Send Data From One Activity to Another in Android
In this post you will learn how to send data from one activity to another in android, we will use intent to pass data from one activity to another in android. Intents are very useful in term of communicating between activities or between application and OS. So let’s start our tutorial by creating new project […] More
-
5 Amazing Flutter Widgets You Should Learn
Flutter is all about widgets. If you wish to be excellent in Flutter, you need complete knowledge about flutter widgets obviously. The entire application can interpret as a widget tree in Flutter. In this post you will learn 5 amazing flutter widgets and however these widgets you can use with your Android applications. For your […] More
-
How to Copy and Paste Android Text From EditText – Copy Paste Text in Android
In this post you will learn how to copy and paste android text from edittext, So we will use ClipboardManager in this tutorial to copy text from edittext in android application and we will also use ClipData to convert our copied text to plain text in android app. So let’s start our tutorial by creating […] More
-
Alertdialog in Android Implementation in Android – Android Alertdialog
In this post you will learn how to implement alertdialog in android, Android alertdialog used to help users answer questions, confirm actions, read warning or error messages and make selections. Android alertdialog is a floating window which popups in our activity screen. Create new project in Android studio and name it ‘Dialog Demo’ 1. […] More