Change-Id: Ib42c1cbd0208e98ef7610a1c8aca5d721aa464e6pull/542/head
parent
eb6dbaac0b
commit
6046f6e943
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2023 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.samples.apps.nowinandroid.core.designsystem.component
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.ColorFilter
|
||||
import androidx.compose.ui.graphics.painter.Painter
|
||||
import coil.compose.AsyncImage
|
||||
import com.google.samples.apps.nowinandroid.core.designsystem.theme.LocalTintTheme
|
||||
|
||||
/**
|
||||
* A wrapper around [AsyncImage] which determines the colorFilter based on the theme
|
||||
*/
|
||||
@Composable
|
||||
fun DynamicAsyncImage(
|
||||
imageUrl: String,
|
||||
contentDescription: String?,
|
||||
modifier: Modifier = Modifier,
|
||||
placeholder: Painter? = null
|
||||
) {
|
||||
val iconTint = LocalTintTheme.current.iconTint
|
||||
AsyncImage(
|
||||
placeholder = placeholder,
|
||||
model = imageUrl,
|
||||
contentDescription = contentDescription,
|
||||
colorFilter = if(iconTint != null) ColorFilter.tint(iconTint) else null,
|
||||
modifier = modifier
|
||||
)
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright 2023 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.samples.apps.nowinandroid.core.designsystem.theme
|
||||
|
||||
import androidx.compose.runtime.Immutable
|
||||
import androidx.compose.runtime.staticCompositionLocalOf
|
||||
import androidx.compose.ui.graphics.Color
|
||||
|
||||
/**
|
||||
* A class to model background color and tonal elevation values for Now in Android.
|
||||
*/
|
||||
@Immutable
|
||||
data class TintTheme(
|
||||
val iconTint: Color? = null,
|
||||
)
|
||||
|
||||
/**
|
||||
* A composition local for [TintTheme].
|
||||
*/
|
||||
val LocalTintTheme = staticCompositionLocalOf { TintTheme() }
|
Loading…
Reference in new issue