All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.sceyt.chatuikit.formatters.Formatter.kt Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package com.sceyt.chatuikit.formatters

import android.content.Context

fun interface Formatter {
    fun format(context: Context, from: T): CharSequence
}

val NoFormatter = Formatter { _, _ -> "" }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy