Pokedex – A kotlin multiplatform app, built with Compose

Pokedex Pokedex is kotlin multiplatform project with 99% shared code, built with Compose multiplatform, Coroutines, Flow, Decompose, MVIKotlin, Koin, Ktor, SqlDelight, and Material 3 based on MVI architecture Open-source libraries Screenshots Android IOS Desktop PokeAPI Pokedex uses [PokeAPI](https://pokeapi.co/) for fetching data related to Pokémon. Authors 🔗 Social Links  Follow me on GitHub License Copyright 2023 M0Coding … Read more

Performing Background Jobs with WorkManager and Coroutines

WorkManager Usage Scheduling Background Tasks Using WorkManager Example Worker.kt class MyWorker: Worker { override fun doWork(): Result { // do the work! /** val data = inputData.getString(“KEY”) **/ return Result.success() } } MainActivity.kt class MainActivity : AppCompatActivity() { // The Instance of the WorkManager is a singleTon pattern that exists for the Life Cycle of … Read more

A Light library that is beautiful Pin Lock screen for Jetpack Compose

Pin Lock ???? Light library that is beautiful Pin Lock screen for Jetpack Compose. The library handles saving pin in Encrypted file. Integration is very easy and fast. Setup Add it in your root build.gradle at the end of repositories: allprojects { repositories { maven { url ‘https://jitpack.io’ } } } Include below dependency in build.gradle of … Read more