Skip to content
View NaingAungLuu's full-sized avatar
πŸ‘¨β€πŸ’»
Working
πŸ‘¨β€πŸ’»
Working

Highlights

  • Pro
Block or Report

Block or report NaingAungLuu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
NaingAungLuu/README.md

Hi πŸ‘‹, I'm Naing Aung Luu @Harry

An aspiring android developer/tech lead from Myanmar πŸ‡²πŸ‡².

naingaungluu

harryluu_96

Blogs posts

Connect with me:

harryluu_96 naing-aung-luu-6113b7192 @naingaungluu harryluu

Languages and Tools:

android arduino bash blender circleci docker figma firebase git graphql java javascript jekyll kotlin linux mysql nodejs postman vuejs vuepress

Support:

naingaungluu



Β naingaungluu

naingaungluu

Pinned

  1. form-conductor form-conductor Public

    A declarative form validation for Jetpack Compose

    Kotlin 55 4

  2. YUCS-Club/Data-Structures-And-Algorithms YUCS-Club/Data-Structures-And-Algorithms Public

    Java 1

  3. dynamic-localization dynamic-localization Public

    A Demo Project to showcase the use of Dynamic Localization features by Harry's article

    Kotlin 18 6

  4. StatefulData.kt StatefulData.kt
    1
    sealed class StatefulData<out T : Any> {
    2
        data class Success<T : Any>(val result : T) : StatefulData<T>()
    3
        data class Error(val msg : String) : StatefulData<Nothing>()
    4
        object Loading : StatefulData<Nothing>()
    5
    
                  
  5. kmm-devfest-2022 kmm-devfest-2022 Public

    A demo project to showcase usage of Kotlin Multiplatform Mobile

    Kotlin 3

  6. Auto Translation Auto Translation
    1
    /**
    2
     * Created by Naing Aung Luu on 27/05/2022
    3
     */
    4
    fun <T : Any> T.translateToAppLanguage(appLanguage: Language): T {
    5
        if (this::class.isData) {