Slide 1

Slide 1 text

Jetpack @Compose Ragunath Jawahar / @ragunathjawahar

Slide 2

Slide 2 text

Many years ago…

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

Architecture

Slide 5

Slide 5 text

MVP VIPER RIBs MVVM Redux MVC Grox MVI MVU BLoC

Slide 6

Slide 6 text

View Box Box

Slide 7

Slide 7 text

✅ Separation of concerns ✅ Maintainability ✅ Extensibility ✅ Testability Boilerplate ⚠

Slide 8

Slide 8 text

Boilerplate ⚠

Slide 9

Slide 9 text

Jetpack Compose

Slide 10

Slide 10 text

• Unbundled UI Toolkit • React, Litho, Vue.js & Flutter • Declarative • Composition over inheritance • Kotlin only • “Pre-Alpha” ⛔

Slide 11

Slide 11 text

FRAMEWORKS ARE NOT TOOLS FOR ORGANISING YOUR CODE, THEY ARE TOOLS FOR ORGANISING YOUR MIND – Rick Hickey

Slide 12

Slide 12 text

(1/2) UIs are trees

Slide 13

Slide 13 text

(2/2) ui = f(s)

Slide 14

Slide 14 text

(2/2) ui = f(s)

Slide 15

Slide 15 text

(2/2) ui = f(s)

Slide 16

Slide 16 text

(2/2) ui = f(s)

Slide 17

Slide 17 text

(2/2) ui = f(s)

Slide 18

Slide 18 text

A Tale of (at least) Two States

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

ui = f(s)

Slide 21

Slide 21 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 22

Slide 22 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 23

Slide 23 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 24

Slide 24 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 25

Slide 25 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 26

Slide 26 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 27

Slide 27 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 28

Slide 28 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 29

Slide 29 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 30

Slide 30 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 31

Slide 31 text

// Android framework val textView = TextView(context) println(textView=>class.java) // AB android.widget.TextView // Jetpack Compose val text = Text(text = "Hello World!") println(text=>class.java) // AB kotlin.Unit No more reference to views

Slide 32

Slide 32 text

@Composable fun Text( text: String, style: TextStyle? = null, textAlign: TextAlign = DefaultTextAlign, // More parameters… ) { // More code… } Composable functions

Slide 33

Slide 33 text

@Composable fun Text( text: String, style: TextStyle? = null, textAlign: TextAlign = DefaultTextAlign, // More parameters… ) { // More code… } Composable functions

Slide 34

Slide 34 text

@Composable fun Text( text: String, style: TextStyle? = null, textAlign: TextAlign = DefaultTextAlign, // More parameters… ) { // More code… } Composable functions

Slide 35

Slide 35 text

@Composable fun Text( text: String, style: TextStyle? = null, textAlign: TextAlign = DefaultTextAlign, // More parameters… ) { // More code… } Composable functions

Slide 36

Slide 36 text

A Composed Example (pun intended)

Slide 37

Slide 37 text

No content

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

No content

Slide 40

Slide 40 text

No content

Slide 41

Slide 41 text

ui = f(s)

Slide 42

Slide 42 text

ui = f(s)

Slide 43

Slide 43 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 44

Slide 44 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 45

Slide 45 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 46

Slide 46 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 47

Slide 47 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 48

Slide 48 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 49

Slide 49 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 50

Slide 50 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 51

Slide 51 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 52

Slide 52 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 53

Slide 53 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 54

Slide 54 text

@Model data class Fruit( val name: String, val price: Double = 2.0, var quantity: Int = 0 ) { val totalPrice: Double get() = quantity * price }

Slide 55

Slide 55 text

ui = f(s)

Slide 56

Slide 56 text

ui = f(s) ✅

Slide 57

Slide 57 text

ui = f(s)

Slide 58

Slide 58 text

ui = f(s)

Slide 59

Slide 59 text

No content

Slide 60

Slide 60 text

Stepper

Slide 61

Slide 61 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 62

Slide 62 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 63

Slide 63 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 64

Slide 64 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 65

Slide 65 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 66

Slide 66 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 67

Slide 67 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 68

Slide 68 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 69

Slide 69 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 70

Slide 70 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 71

Slide 71 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 72

Slide 72 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 73

Slide 73 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 74

Slide 74 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 75

Slide 75 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 76

Slide 76 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 77

Slide 77 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 78

Slide 78 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 79

Slide 79 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 80

Slide 80 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 81

Slide 81 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 82

Slide 82 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 83

Slide 83 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 84

Slide 84 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 85

Slide 85 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 86

Slide 86 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 87

Slide 87 text

@Composable fun Stepper(count: Int, onCountChange: (Int) ^> Unit) { val onRemoveOne = { onCountChange(count - 1) } val onAddOne = { onCountChange(count + 1) } Row { Button(text = "-", onClick = if (count > 0) onRemoveOne else null) WidthSpacer(8.dp) Container(width = 24.dp) { Text(text = "$count", style = +themeTextStyle { body1 }) } WidthSpacer(8.dp) Button(text = "+", onClick = onAddOne) } }

Slide 88

Slide 88 text

Stepper

Slide 89

Slide 89 text

Stepper ✅

Slide 90

Slide 90 text

No content

Slide 91

Slide 91 text

Fruit Row

Slide 92

Slide 92 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 93

Slide 93 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 94

Slide 94 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 95

Slide 95 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 96

Slide 96 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 97

Slide 97 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 98

Slide 98 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 99

Slide 99 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 100

Slide 100 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 101

Slide 101 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 102

Slide 102 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 103

Slide 103 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 104

Slide 104 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 105

Slide 105 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 106

Slide 106 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 107

Slide 107 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 108

Slide 108 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 109

Slide 109 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 110

Slide 110 text

@Composable fun FruitRow(fruit: Fruit) { Padding(padding = EdgeInsets(left = 16.dp, right = 16.dp)) { FlexRow { expanded(1.0f) { Text(text = "${fruit.name} ($${fruit.totalPrice})", style = +themeTextStyle { h6 }) } inflexible { Stepper(fruit.quantity, onCountChange = { fruit.quantity = it }) } } } }

Slide 111

Slide 111 text

Fruit Row

Slide 112

Slide 112 text

Fruit Row ✅

Slide 113

Slide 113 text

State?

Slide 114

Slide 114 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 115

Slide 115 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 116

Slide 116 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 117

Slide 117 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 118

Slide 118 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 119

Slide 119 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 120

Slide 120 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 121

Slide 121 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 122

Slide 122 text

override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { FruitApp { val apple = +memo { Fruit("Apple") } FruitRow(apple) } } }

Slide 123

Slide 123 text

{ Demo }

Slide 124

Slide 124 text

Future • Increased productivity • Higher-level of abstraction • Wider use of existing of skillset • Collaboration • Design • Product • Other platforms?

Slide 125

Slide 125 text

No content

Slide 126

Slide 126 text

Resources • https://developer.android.com/jetpack/compose • http://intelligiblebabble.com/content-on-declarative-ui/ • http://intelligiblebabble.com/compose-from-first-principles/ • #compose channel at https://kotlinlang.slack.com/

Slide 127

Slide 127 text

@ragunathjawahar Twitter / Medium / GitHub end;