All Stories
Kotlin - no_image
CoroutinesA coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously. Coroutines were added to Kotlin in version 1.3 and are...
In tutorial, no_image, kotlin, Jan 23, 2025Kotlin - visibility_modifiers
Visibility modifiers
In tutorial, visibility_modifiers, kotlin, Jan 23, 2025Kotlin - scope_function
Scope functionsThe Kotlin standard library contains several functions whose sole purpose is to execute a block of code within the context of an object. When you call such a function o...
In tutorial, scope_function, kotlin, Jan 23, 2025Kotlin - no_image
GenericsGeneric programming is a way of writing our code in a flexible manner like we would in a dynamically-typed language. At the same time, generics allow us to write code safely a...
In tutorial, no_image, kotlin, Jan 23, 2025Kotlin - no_image
Reduce reduce method transforms a given collection into a single result. It takes a lamda operator to combine a pair of elements into a accumulated value.It then traverses the co...
In tutorial, no_image, kotlin, Jan 23, 2025Kotlin - nullability_compile_time_error
Describe nullability and null safetyNullability is the ability of a variable to hold a null value. When a variable contains null, an attempt to dereference the variable leads to a Nul...
In tutorial, nullability_compile_time_error, kotlin, 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,