How to Get Started on Flutter | For Both Non Programmers and Programmers
Learn the best way of Getting Started with Flutter.
Learn the best way of Getting Started with Flutter.
In this article, I will post the code on how you can create a Simple Dialog Box in Flutter. The dialog box we will be creating is shown in the image below. After Clicking on a button, ShowDialog() is triggered and the dialog box as shown in the image above is shown on the screen. … Read more
How to Make a Rounded Container in Flutter? Related: Create a Dialog Box in Flutter with Radio Buttons How to Fetch Data from Internet? Flutter Tutorial Login and Register Easily with Flutter using Firebase
Unwrap Key Failed Error: Solution: Added the last two lines on AndroidManifest.xml located on android/app/src/main This solution is given on GitHub. Here’s the link to the solution: 3.1.0: Failed to unwrap key ยท Issue #13 New Error: If it doesn’t work and you get Unhandled Exception: PlatformException(Exception encountered, read, javax.crypto.BadPaddingException: error:1e000065:Cipher functions:OPENSSL_internal:BAD_DECRYPT The solution should … Read more
Have you thought about why Pubsec isn’t in dart? Why is it in another language? I was curious today, so I did a little bit of searching. Before we discuss that, Let’s discuss Yaml first. Do you know Yaml stands for Yaml ain’t markup language! It is a programming language and is mostly used because … Read more
Here in this article, I will be discussing how you can check the internet connection status using Flutter Bloc and Connectivity Plus Package. You can get both the package on Pub.dev I will also be discussing how the events and states will work in simple terms based on my understanding. In this code, I am … Read more
One of the most common issues flutters users face while developing mobile apps is the keyboard. After the Keyboard pops up, it is important to dismiss it because it takes up around half the area on the screen. Related: Login/Register in Flutter Using Firebase In this tutorial, we will look at how to hide the … Read more
Hey Guys, In this article I will teach you how to fetch data from the internet in Flutter. We will be using the HTTP package to get the data from the API and then get the required data by decoding the response in JSON format. I have also made a Speed coding video showing the … Read more
This is a new flutter error I recently came across and wasn’t able to find solutions in Stack Overflow or other forums and sites. What was the problem? As you can see above, the package info plus package have a Kotlin version 1.6.10, however, the required version for the program to run was 1.6.20 and … Read more