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

December 21, 2021

Collapsible toolbar programatically in android

December 21, 2021 Posted by Piash , No comments
Sometimes may need the toolbar collapsible in the initial stage or in a certain condition. In that time we implement the functionality programmatically. Here is the following code or function we can call in a particular condition.fun setCollapsibleToolbar() { val params = appBar.layoutParams as CoordinatorLayout.LayoutParams val behavior = params.behavior as AppBarLayout.Behavior? ...

December 18, 2021

Get child data in parent table by backReferencedOn in kotlin Exposed Ktor part-3

December 18, 2021 Posted by Piash , No comments
UserId is a foreign key in UserHasType table . Now if we want to get UserHasTypeTable data as child data in UsersTable we need to point it as val userType by UserHasTypeEntity backReferencedOn UserHasTypeTable.user_idobject UsersTable : IdTable<String>("users") { override val id: Column<EntityID<String>> = text("id").uniqueIndex().entityId() val user_name = text("user_name")...