Mehedi Hassan Piash | Senior Software Engineer | Android | iOS | KMP | Ktor | Jetpack Compose | React-Native.

April 19, 2020

April 17, 2020

Most used extension function for android

April 17, 2020 Posted by Piash , No comments
Any[Extension]  val Boolean?.value: Boolean get() = this ?: false val Int?.value: Int get() = this ?: 0 val Long?.value: Long get() = this ?: 0L val Float?.value: Float get() = this ?: 0f val Double?.value: Double get() = this ?: 0.toDouble() val String?.value: String get() = this ?: AppConstants.Default.STRING Data[Extension]  inline fun <reified T : Activity>...