Skip to content
View ch4vi's full-sized avatar
🥘
Working on things
🥘
Working on things

Highlights

  • Pro
Block or Report

Block or report ch4vi

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

  1. MarvelHeroes MarvelHeroes Public

    Sample project using MarvelApi that loads a list of characters and a screen with additional details.

    Kotlin 1

  2. FlowLayout FlowLayout Public

    An Android Layout Manager to create a gridview with cells of different sizes inspired by Flow Layout for iOS.

    Kotlin 101 10

  3. MeetingSignalBLE MeetingSignalBLE Public

    Android app to control "On Air" style banner

    Kotlin

  4. Concatenate LiveData Concatenate LiveData
    1
    
                  
    2
    fun <T, R> LiveData<T>.then(callback: (T) -> LiveData<R>): LiveData<R> {
    3
      return Transformations.switchMap(this, {
    4
        result(it)
    5
      })