https://kotlinlang.org logo
#moko
Title
# moko
n

Nick Halase

01/08/2020, 4:16 PM
Is it intentional or a bug that when I embed a list widget in a screen implementing navigation that the list completely covers the top navigation bar?
a

alex009

01/08/2020, 4:59 PM
Hi. Can you show screen code and screenshot?
Tapping into a “Cohort” would yield another TableView with cells representing members of that cohort (which could then be tapped to view images of those members).
a

alex009

01/10/2020, 6:53 AM
Copy code
kotlin
BottomNavigationItem(
                    id = 1,
                    title = "Cohorts".desc(),
                    screen = CohortsScreen::class,
                    icon = MR.images.list_simple_black
                )
here must be used not
CohortsScreen
but
CohortsNavigationScreen
n

Nick Halase

01/11/2020, 4:58 AM
Thank you, lol. I’m an idiot 😅. Any plans to add button support for the top bar?
a

alex009

01/11/2020, 10:34 AM
request please this improvement on github and it will be in plans 🙂
2 Views