What is Flutter?Flutter is a framework designed by Google. It is built in the programming language Dart, which Google also develops. With Flutter, you can roll out an application across different platforms (iOS, Android, web, desktop & embedded) with a single codebase. The advantage of this is that it is easier to.....
Flutter testFlutter tests are a vital part of the development process, ensuring that the codebase is reliable and that any new changes do not break existing functionality. Here’s how they work: By using these tests, developers can confidently build and maintain large applications with Flutter, knowing that any regressions or bugs.....
What is Unity and Unity AR?Unity is a powerful game development engine that provides creators with the tools for interactive 3D and 2D content. Regarding Flutter, which is a separate framework for building cross-platform mobile applications, testing plays an essential role in ensuring the quality and stability of applications. Unity's AR foundation provides a common.....
White screen on Android with Flutter UnityLast week I faced the issue that the Unity part was showing a white screen instead of the loading screen.I was searching through the issue list of the repository I found an answer to solve this problem. With the export from Unity a line is missing inside the following file:.....
How to make Unity Flutter the touch working on AndroidAt this moment I’m developing a mobile application that needs AR functionality. For this AR functionality, I’m using Unity the AR Foundation. I used Inside Unity for the touch the old and new input systems.If you don’t know which one you have, go to the Player Settings and then to.....
What is Flutter bloc?Within a mobile application, you have different screens that need to be kept up-to-date. To keep these up-to-date, the state manager can be used. In this way, the UI can be updated when the state changes. Just like how the stateful and stateless widget of Flutter works, except those are.....
AR and FlutterLast week I was looking at some AR functionalities to use inside Flutter.There are a couple of options to use. There are three plugins to communicate with the ARKit and ARCore.1. https://pub.dev/packages/ar_flutter_plugin (for iOS & Android)2. https://pub.dev/packages/arkit_plugin (only iOS)3. https://pub.dev/packages/arcore_flutter_plugin (only Android) At the time I’m writing this down there are no more plugins to implement.....
What is monorepo?Monorepo are hot these days. But what are they and why would you use monorepo for your project? Let’s dive into it! With monorepo it is possible to create multiple (little) projects in one repository. Following the website monorepo.tools means monorepo the following: “A monorepo is a single repository containing.....
How does AR work?With AR (Augmented Reality), it becomes possible to overlay information onto reality. This means that you still see the environment as it is, but with the help of a device, you can place something in this environment that is only visible on the device. A well-known mobile application that uses.....