-
Singleton design pattern in Flutter
What is Singleton?
Singleton is a creational design pattern that ensures that a class has only one instance and also provides a global po...
Read More >
-
Platform channel in Flutter
Flutter allows us to call platform-specific APIs available in Java or Kotlin code on Android and in Objective C or Swift code on iOS.
Flutter&rsquo...
Read More >
-
Android Memory leaks and Garbage collection
Memory Leak:
A memory leak happens when memory is allocated but never freed. This means the garbage collector is not able to take out the trash onc...
Read More >
-
Garbage Collection in Java
Garbage collection in Java is the process by which Java programs perform automatic memory management. Java programs compile to bytecode that can be ru...
Read More >
-
Google OAuth | Error: OAuth 2.0 Playground Error 403: access_denied
Go to your developer console https://console.cloud.google.com/apis/credentials/consent
Go to OAuth consent screen
Go to +Add users, und...
Read More >
-
MVC (Model View Controller) Architecture Pattern in Android
Developing an android application by applying a software architecture pattern is always preferred by the developers. An architecture pattern gives mod...
Read More >
-
Dependency Injection In Flutter With Inherited Widget
Introduction To Dependency Injection
Dependency Injection is a technique for resolving object dependencies during class initialization. It allows t...
Read More >
-
MVP (Model View Presenter) Architecture Pattern in Android
In the initial stages of Android development, learners do write codes in such a manner that eventually creates a MainActivity class tha...
Read More >
-
MVVM (Model View ViewModel) Architecture Pattern in Android
Developers always prefer clean and structured code for their projects. By organizing the codes according to a design pattern helps in the maintenance ...
Read More >
-
Dependency Injection in Dart/Flutter Apps
Dependency Injection is a way of making the dependencies of an object available via another object, and these dependencies are usually known as servic...
Read More >