Fix bad naming of resource.
@@ -30,7 +30,7 @@ import androidx.compose.ui.tooling.preview.Preview
|
|||||||
@Composable
|
@Composable
|
||||||
internal fun IconPreview() {
|
internal fun IconPreview() {
|
||||||
Box {
|
Box {
|
||||||
Image(painter = painterResource(id = R.mipmap.ic_launcher_background), contentDescription = null)
|
Image(painter = painterResource(id = R.mipmap.ic_launcher_background_enterprise), contentDescription = null)
|
||||||
Image(
|
Image(
|
||||||
modifier = Modifier.align(Alignment.Center),
|
modifier = Modifier.align(Alignment.Center),
|
||||||
painter = painterResource(id = R.mipmap.ic_launcher_foreground_enterprise),
|
painter = painterResource(id = R.mipmap.ic_launcher_foreground_enterprise),
|
||||||
@@ -43,7 +43,7 @@ internal fun IconPreview() {
|
|||||||
@Composable
|
@Composable
|
||||||
internal fun RoundIconPreview() {
|
internal fun RoundIconPreview() {
|
||||||
Box(modifier = Modifier.clip(shape = CircleShape)) {
|
Box(modifier = Modifier.clip(shape = CircleShape)) {
|
||||||
Image(painter = painterResource(id = R.mipmap.ic_launcher_background), contentDescription = null)
|
Image(painter = painterResource(id = R.mipmap.ic_launcher_background_enterprise), contentDescription = null)
|
||||||
Image(
|
Image(
|
||||||
modifier = Modifier.align(Alignment.Center),
|
modifier = Modifier.align(Alignment.Center),
|
||||||
painter = painterResource(id = R.mipmap.ic_launcher_foreground_enterprise),
|
painter = painterResource(id = R.mipmap.ic_launcher_foreground_enterprise),
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
@@ -1,2 +1,2 @@
|
|||||||
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:src="@mipmap/ic_launcher_background" />
|
android:src="@mipmap/ic_launcher_background_enterprise" />
|
||||||