[SOLVED] Error: Your app isn’t using AndroidX.

I developed an app in flutter with Visual Studio code on Windows. When i ran the project it shows a message, Your app isn’t using AndroidX.To avoid potential build failures,…

Read more »

[!] The shrinker may have failed to optimize the Java bytecode. Exited (sigterm) in Flutter

If you get such type of error When you run a Project in Flutter App in Android emulator then – After that open your project in editor “Project_Name/Android/build.gradle” and find…

Read more »

No version of NDK matched the requested version in flutter >> Solved.

Hello Guys i was trying to get The SHA1 key to integrate firebase in my flutter app.After updating to Android Gradle plugin 3.6.0 (released Feb 24, 2020), several project independently started failing with:…

Read more »

How to create a firebase app and where to Insert?

First Create a Firebase console and click on “Project OverView“‘s “Project Setting” button and after that click on “Add App” and as you want to create for “ios” , “Android“,…

Read more »

How to create Firebase Console for Flutter Database?

First Go to https://console.firebase.google.com/ and click on plus icon like below- After that fill input box as you wish project name like below- and click continue fsd Your Firebase Console…

Read more »

How to get the SHA-1 fingerprint certificate for firebase in Android Studio for debug mode?

First, open Android Studio in your system and open or create a Flutter project after that open “Android” folder’s “app” folder and open “build.gradle“. When you open build.gradle then shown…

Read more »

Flutter: [core/no-app] No Firebase App ‘[DEFAULT]’ has been created – call Firebase.initializeApp()

If you get such type of error When you run a Project in Flutter App using Firebase then – open “pubspec.yaml” and paste in “dependencies:” like below: After that open…

Read more »

How to get SHA1-Key in Flutter?

In this blog I am going to explain that how to get SHA1-Key in Flutter. So, Before Create a flutter project. And, When you using “https://console.firebase.google.com/“ from sign in or…

Read more »

How To Make Profile App in Flutter.

In this blog, i’ll show you all how to make a Profile App in Flutter. Just Follow the below Steps :- I’m assuming that you have already created a flutter…

Read more »

How to add text Widget in flutter using Dart Packages?

In this blog, I am going to adding text Widget in Mobile App in flutter using Dart Packages. So, I am using VS Code Editor for easy and fast before…

Read more »

How to create a calculator in flutter using dart packages?

In this blog, we are going to learn How to create a calculator in flutter full functionality. So, I already create a new project in flutter and open “lib/main.dart” in…

Read more »

How to Create a Login Form In flutter using dart packages?

In this blog, I am going to explain how to create a Login Form In flutter using dart Package. So, Before I already create a Project an open “lib/main.dart” in…

Read more »

How to Add Input Section to Mobile App in Flutter using dart packages?

In this blog, I am going to explain that Add Input Section to Mobile App in Flutter. So, In this blog, I am going to use VS Code editor and…

Read more »

How to Add Splash Screen to Mobile App in Flutter using dart packages?

In this blog, I am going to explain that Add Splash Screen to Mobile App in Flutter. So, In this blog, I am going to use VS Code editor and…

Read more »

How to add Images in Flutter.

Create an image folder inside an assets folder, create assets if not exist. This should be in your root folder, in that same root directory you will find a pubspec.yaml…

Read more »

What is the difference between stateless and stateful widgets? >>Flutter.

I am learning Dart/flutter and trying to understand how Widgets system works and I found out some useful things, hope it helps you too. Actually There are 3 kind of…

Read more »

Everything about Text Widget in Flutter.

The first thing you need to know is that creating an app is all about creating small widgets, and compile them in one. As if you know a bit about…

Read more »

How to Make Navigation from One Screen to Other in Flutter.

Navigation from One Screen to Other is pretty Easier, Just Follow the Below Steps :- Step 1 :- First of all, make two new files named home.dart and about.dart ….

Read more »

How To Create Your Own Widget In Flutter.

To Create your Own Widget in Flutter, Just Follow the Below Steps. Step 1 :- First of all, create a new file in lib directory named home.dart (you can write…

Read more »