AboutMe

fun AboutMe(profile: UserProfile, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, content: @Composable (String, Modifier) -> Unit = { userInfo, contentModifier -> AboutMeDefaultContent(userInfo, textStyle, contentModifier) })

AboutMe is a composable that displays a user's about me description.

Parameters

profile

The user's profile information

modifier

Composable modifier

textStyle

The style to apply to the default text content

content

Composable to display the user's about me description


fun AboutMe(state: UserProfileState, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, content: @Composable (String, Modifier) -> Unit = { userInfo, contentModifier -> AboutMeDefaultContent(userInfo, textStyle, contentModifier) })

AboutMe is a composable that displays a user's about me description.

Parameters

state

The user's profile loading state

modifier

Composable modifier

textStyle

The style to apply to the default text content

content

Composable to display the user's about me description