TextPreviewDrawer
class TextPreviewDrawer(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable () -> TextStyle = {
MaterialTheme.typography.bodyMedium.copy(fontSize = 15.sp)
}, maxLines: Int = Int.MAX_VALUE, textColor: @Composable (DrawInfo) -> Color = {
MaterialTheme.colorScheme.onBackground
}) : StoryStepDrawer
Constructors
Link copied to clipboard
constructor(modifier: Modifier = Modifier.padding(vertical = 5.dp, horizontal = 16.dp), style: @Composable () -> TextStyle = {
MaterialTheme.typography.bodyMedium.copy(fontSize = 15.sp)
}, maxLines: Int = Int.MAX_VALUE, textColor: @Composable (DrawInfo) -> Color = {
MaterialTheme.colorScheme.onBackground
})