When a user clicks on the user profile avatar at the post creator area, UIKit will open
However, you can intercept the event and define your own logic following the example below.
EkoGlobalFeedFragment
.Builder()
.onClickUserAvatar(object : IAvatarClickListener {
override fun onClickUserAvatar(user: EkoUser) {
// your custom logic
}
})
.build(this)