Author: Velmurugan
-
How to run task with work manager in android ?
WorkManager is an Android library that runs deferrable background work when the work’s constraints are satisfied.
-
View Binding in Android Jetpack [Updated]
View binding is a feature that allows us to write code that interacts with views. In most cases, view binding replaces findViewById. It supports both Java and Kotlin.
-
Implementing TabLayout with ViewPager On Jetpack compose
In this tutorial, I will explain how we can create a tab layout using Jetpack Compose. TabLayout allows us to quickly navigate between related content on a single page, which appears toward the top of the screen.
-
Easy Guide To Setup Single Sign-On With AppAuth Android
Appauth Android is a client SDK for native apps to authenticate and authorize end-users using OAuth 2.0 and OpenID Connect. Available for iOS, macOS, Android, and Native JS environments.
-
ShapeableImageView – Material components for android [Example]
Material Design 1.2.0 introduced ShapeableImageView which draws the image with the provided Shape in your imageview.
-
Kotlin Scope Functions Explained [Example]
Kotlin “scope functions” are functions that allow for changing the scope, or the range, of a variable. There are five such functions included in the Kotlin standard library: apply, run, with, let, and also.