Splash screen is something which is very important and you must have seen this in most any of the application when you start an application for the first time. Having a beautiful splash screen will make an impact. I am making tutorials on how to make a splash screen and …
Mobile Development
Flutter Camera App
We are going to make a Flutter camera app. We will access camera API to overlay preview in full screen widget. The app will need a permission to access camera device. You can then able to extend functionality such as flash, camera orientation, camera focus and capture frame and access …
Making Flutter Firebase Chat App
This part will cover how to make a chat app with Flutter and Firebase from scratch. You will learn how to integrate Firebase Auth, Google Sign-In, Cloud Firestore for database, and Firestore Storage. We will also put an emoji as features. The final app will show like this: Flutter Chat …
Cannot Launch Android Emulator
Android Emulator is useful when you want to debug locally inside your environment. We can debug with any minimal Android API requirements that our apps need. But, sometimes we cannot launch Android Emulator with some error. Last time, i had this error log: [140735755441088]:ERROR:./android/qt/qt_setup.cpp:28:Qt library not found at ../emulator/lib64/qt/libCould not …
React Native Tutorial
Hi, we’re going to be looking at the awesome technology of React Native. We will learn and talk about React Native tutorial from zero to intermediate. React Native, in case you don’t know, is a library that builds up upon React and JavaScript and allows you to build native mobile …
Flutter
When you plan to make a cross platform mobile development, Google Flutter is one of your best choice. As 4th December 2018 at Flutter Live!, Google announced the stable release of Flutter 1.0. It is very overwhelming for the community. As we know, Flutter could make a beautiful and amazing …
Accessing StreamingAssets in Android or iOS
StreamingAssets is useful if you want to access files that you need in your project and want to access it via a pathname, such as a game data, or a json data, video, or anything else. Any files placed in a folder called StreamingAssets (case-sensitive) in a Unity project will …
Convert Mutable List to Array in Kotlin without bracket and comma
I am learning about the Array data structure in kotlin. The task is given an input array and i need to print in reverse that array and without bracket and comma.The solution is i have to use mutable list to populate the input array, and print the result and replace …