All Stories
Patterns - no_image
Prototype patternThe prototype pattern is a creational design pattern. It is used when the type of objects to create is determined by a prototypical instance, which is cloned to produ...
In tutorial, no_image, patterns, Jan 23, 2025Patterns - no_image
Memento patternThe memento pattern is a software design pattern that provides the ability to restore an object to its previous state (undo via rollback). The Memento design pattern de...
In tutorial, no_image, patterns, Jan 23, 2025Patterns - no_image
Mediator patternMediator pattern defines an object that encapsulates how a set of objects interact. This pattern is considered to be a behavioral pattern due to the way it can alter t...
In tutorial, no_image, patterns, Jan 23, 2025Patterns - mvvm_android
MVVM patternModel–view–viewmodel (MVVM) is a software architectural pattern that facilitates the separation of the development of the UI - rom the development of the business logic or...
In tutorial, mvvm_android, patterns, Jan 23, 2025Patterns - mvp_android
MVP patternMVP is an architectural pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic.
In tutorial, mvp_android, patterns, Jan 23, 2025Patterns - mvi
MVI patternMVI stands for Model-View-Intent. MVI is one of the newest architecture patterns for Android, inspired by the unidirectional and cyclical nature of the Cycle.js framework.
In tutorial, mvi, patterns, Jan 23, 2025Patterns - no_image
Interpreter patternInterpreter design pattern specifies how to evaluate sentences in a language. The basic idea is to have a class for each symbol (terminal or nonterminal) in a speci...
In tutorial, no_image, patterns, Jan 23, 2025Patterns - no_image
Flyweight patternA flyweight is an object that minimizes memory usage by sharing as much data as possible with other similar objects; it is a way to use objects in large numbers when ...
In tutorial, no_image, patterns, Jan 23, 2025Featured
-
Testing - no_image
In tutorial, no_image, testing, -
Live_Data
In featured, tutorial, android, -
Kt Coroutine
In featured, tutorial, android, -
Flutter interview questions
In Flutter, oneview, -
Hilt DI Deep Dive
In Android, DI,