Timeline: update bubble style

This commit is contained in:
ganfra 2022-11-24 10:53:26 +01:00
parent cfda0f08bf
commit 9107147c50
3 changed files with 27 additions and 15 deletions

View file

@ -17,7 +17,7 @@ val SystemGrey3Dark = Color(0xFF48484A)
val SystemGrey4Light = Color(0xFFD1D1D6)
val SystemGrey4Dark = Color(0xFF3A3A3C)
val SystemGrey5Light = Color(0xFFE5E5EA)
val SystemGrey5Dark = Color(0xFF1C1C1E)
val SystemGrey5Dark = Color(0xFF2C2C2E)
val SystemGrey6Light = Color(0xFFF2F2F7)
val SystemGrey6Dark = Color(0xFF1C1C1E)

View file

@ -4,7 +4,9 @@ import android.os.Build
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.runtime.CompositionLocalProvider
import androidx.compose.runtime.SideEffect
import androidx.compose.runtime.compositionLocalOf
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.LocalContext
import com.google.accompanist.systemuicontroller.rememberSystemUiController
@ -42,7 +44,7 @@ private val LightColorScheme = lightColorScheme(
onSurface = Color(0xFF1C1B1F),
*/
)
val LocalIsDarkTheme = compositionLocalOf<Boolean> { error("Not defined") }
@Composable
fun ElementXTheme(
@ -72,9 +74,14 @@ fun ElementXTheme(
)
}
MaterialTheme(
colorScheme = colorScheme,
typography = Typography,
content = content
)
}
CompositionLocalProvider(LocalIsDarkTheme provides darkTheme) {
MaterialTheme(
colorScheme = colorScheme,
typography = Typography,
content = content
)
}
}