There are many reasons why this would happen. The only thing you could do is try the below steps and solutions one by one. This is mostly vscode error Anyone of the solution may work with you. Solution number 1 Solution number 2 Remove about app.apk in /build/app/outputs/apk/app.apk and rebuild. VS code may have this…
Month: March 2024
[firebase_auth/unknown] Please register custom URL scheme ‘app’
This is a common error Flutter iOS set up with firebase. To overcome this issue make sure you redownload the GoogleService-Info.plist file from firebase console and put in Runner folders inside iOS. In the file you will see REVERSED_CLIENT_ID copy that line and put the line inside info.plist file So put your REVERSED_CLIENT_ID like that.
Dart Ternary Operator with Flutter
Here we will see dart ternary operator along with flutter usage. Dart ternary operator looks like below ?: Now this may look like confusing. There are two parts of it. The first part is ? and the other part is : and they are used separately. Next thing we need to know that, we use…
Flutter screenUtil package initialization
Flutter screenutil is a great package for screen pixel adoption in different systems like Android and iOS. If you install flutter_screenutil package and initialize it correctly you will your screens looks same on the different platform and yet they are best fitted. Install it and get flutter pub add flutter_screenutil && flutter pub get And…