Kotlin Mastery
Open main menu
Home
About
Daily Quiz
Login
Loading...
Compose
1
Why would you choose to use Jetpack Compose over the traditional Android View System for building user interfaces in an Android app?
2
A Composable in Jetpack Compose goes through three phases during its lifecycle. Can you describe these phases and explain what happens during each phase?
3
How do you make a Composable Stateless?
4
What are some Side Effects you have used?
5
How does Compose decides to recompose when a new movie is added to the list?
6
How do you make sure your Composable is efficient?
7
How do you design something like this.
8
What are some best practices you are aware of when it comes to Composables in Jetpack Compose?
9
What are the differences between LaunchedEffect and DisposableEffect?
10
What is SideEffect side-effect?
11
You want to show a Button when the List is scrolled up. How would you handle it in Jetpack Compose?
12
What is the meaning of remember in the context of Jetpack compose? What is meant by remembering a state?
13
What the concept of State Hoisting when in comes to compose?
14
Property Drillings vs CompositionLocal, which one do you prefer?
15
Why composables are preffered to be side effect free?
16
What would you do to deliver performant Composables?
17
You are noticing multiple unwanted recompositions, how would you fix it?