SocialIconRow

fun SocialIconRow(socialMedia: List<SocialMedia>, modifier: Modifier = Modifier, maxIcons: Int = 4)

SocialIconRow is a composable that displays a row of clickable SocialIcon.

Parameters

socialMedia

The list of social media accounts to display

modifier

Composable modifier

maxIcons

The maximum number of icons to display


fun SocialIconRow(profile: Profile, modifier: Modifier = Modifier, maxIcons: Int = 4)

SocialIconRow is a composable that displays a row of clickable SocialIcon.

Parameters

profile

The user's profile information

modifier

Composable modifier

maxIcons

The maximum number of icons to display


fun SocialIconRow(state: ComponentState<Profile>, modifier: Modifier = Modifier, maxIcons: Int = 4)

SocialIconRow is a composable that displays a row of clickable SocialIcon.

Parameters

state

The user's profile state

modifier

Composable modifier

maxIcons

The maximum number of icons to display