-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
drawableResource.kt
62 lines (53 loc) · 1.86 KB
/
drawableResource.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package co.joebirch.composeplayground.resource
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import co.joebirch.composeplayground.ComposableLayout
import co.joebirch.composeplayground.R
object ImageResourceView : ComposableLayout {
@Composable
override fun build() {
Column(
modifier = Modifier
.fillMaxSize()
.padding(32.dp),
verticalArrangement = Arrangement.SpaceEvenly,
horizontalAlignment = Alignment.CenterHorizontally
) {
Image(
painter = painterResource(
id =
R.drawable.ic_baseline_account_circle_24
),
modifier = Modifier.padding(16.dp),
contentDescription = "my description"
)
Image(
painter = painterResource(
id =
R.drawable.outline_accessibility_black_18dp
),
modifier = Modifier.padding(16.dp),
contentDescription = "my description"
)
painterResource(
id =
R.drawable.outline_accessibility_black_18dp
).also {
Image(
painter = it,
modifier = Modifier.padding(16.dp),
contentDescription = "my description"
)
}
}
}
}