Skip to content
View hlayan's full-sized avatar
🌱
Steadily
🌱
Steadily
Block or Report

Block or report hlayan

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
hlayan/README.md

Hi there 👋, I am hlayan

Highly motivated Android developer with 3+ years of experience, deeply passionate about mastering the latest technologies like Jetpack Compose and Kotlin Language.

With a focus on clean architectures, design patterns, and scalable solutions, I continually seek out opportunities to enhance my skills and contribute to the growth of dynamic projects.

LinkedIn • https://www.linkedin.com/in/hlayan

Pinned

  1. forex-rate forex-rate Public template

    An app for showing foreign exchange rate from Central Bank of Myanmar

    Kotlin 3

  2. scripty scripty Public

    A text editor that make easy to type superscript and subscript

    Kotlin 9 1

  3. birthdays-master birthdays-master Public

    A sample free and offline note for saving dates of birth and calculator

    Java 1 1

  4. weather weather Public

    Weather is a forecasting Android app built entirely with Kotlin and Jetpack Compose.

    Kotlin

  5. Single Event Solution for Kotlin Flo... Single Event Solution for Kotlin Flow and Compose
    1
    class Event<out T>(private val _value: T?) {
    2
    
                  
    3
        private val used = AtomicBoolean(false)
    4
    
                  
    5
        val value: T? get() = if (used.compareAndSet(false, true)) _value else null