Skip to content
View VansPo's full-sized avatar

Block or report VansPo

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. state-machine state-machine Public

    State machine implementation

    Kotlin 5 1

  2. tus-interceptor tus-interceptor Public

    Retrofit Tus protocol extension

    Kotlin 1

  3. service-locator service-locator Public

    Kotlin

  4. compose-challenge-2 compose-challenge-2 Public

    Kotlin 7 2

  5. Draft for an automatic reference cle... Draft for an automatic reference cleaner view delegate
    1
    class DisposableView<T : View>(
    2
        lifecycleOwner: LifecycleOwner,
    3
        viewLifecycleOwnerLiveData: LiveData<LifecycleOwner>
    4
    ) : ReadWriteProperty<LifecycleOwner, T?>, LifecycleEventObserver {
    5
        private var _value: T? = null
  6. LiveData debounce extension LiveData debounce extension
    1
    private val searchInputData: MutableLiveData<String> = MutableLiveData<String>()
    2
    
                  
    3
    val searchResultData: LiveData<List<Items>> = searchInputData
    4
      .debounce(300L, mainScope)
    5
      //.map(::getItemByName)