mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-07-25 11:25:21 +00:00
10 lines
280 B
Kotlin
10 lines
280 B
Kotlin
package com.bitchat.android.ui
|
|
|
|
/**
|
|
* UI constants/utilities for nickname rendering.
|
|
*/
|
|
fun truncateNickname(name: String, maxLen: Int = com.bitchat.android.util.AppConstants.UI.MAX_NICKNAME_LENGTH): String {
|
|
return if (name.length <= maxLen) name else name.take(maxLen)
|
|
}
|
|
|