AboutMe
fun AboutMe(profile: Profile, 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: ComponentState<Profile>, modifier: Modifier = Modifier, skeletonModifier: 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
skeletonModifier
Composable modifier for the loading skeleton component
textStyle
The style to apply to the default text content
content
Composable to display the user's about me description