Sendbird Surface
fun SendbirdSurface(modifier: Modifier = Modifier, shape: Shape = RectangleShape, lightThemeColor: Color = MaterialTheme.colorScheme.background, darkThemeColor: Color = MaterialTheme.colorScheme.surfaceBright, content: @Composable () -> Unit)
Represents a surface view with Uikit style.
Since
1.0.0-beta.1
Parameters
modifier
The modifier to be applied to the view.
shape
The shape of the view. Defaults to RectangleShape.
light Theme Color
The color of the view in light theme. Defaults to MaterialTheme.colorScheme.background.
dark Theme Color
The color of the view in dark theme. Defaults to MaterialTheme.colorScheme.surfaceBright.
content
The content to be displayed.