Skip to content
View darylsze's full-sized avatar
  • Hong Kong

Block or report darylsze

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

Pinned Loading

  1. RxKotlinStarter-Quick-N-Fast Public

    New kotlin architecture for Android applications developing based on ReactiveX,integrates many open source projects( like Kodein,Rxjava2, RxKotlin, Retrofit... ),to make your developing quicker and…

    Kotlin 11 3

  2. Android-Layout-StateLayout Public

    Layout wrapper that handles different application states, including loading, empty and error state. Written in 100% Kotlin and 75% Anko.

    Kotlin 4

  3. weather-app Public

    A demo weather app using RxJava2, AndroidX, Kodein, MVVM and OpenWeatherMap api

    Kotlin 1

  4. vaccine-flutter Public

    Dart 2

  5. Kotlin DSL to runtime build a config...
    1
    import com.package.MenuOption
    2
    
                  
    3
    class MenuBuilder {
    4
        val menuConfigs = mutableListOf<MenuOptionConfig>()
    5
        var commonCallback: ((MenuOption) -> Unit)? = null
  6. resettableDelegate.kt
    1
    interface IResettable {
    2
        fun reset()
    3
    }
    4
     
    5
    open class ResettableAspect: IResettable {