Skip to content

Commit

Permalink
fixing organizing team spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
jumapaul committed Oct 13, 2023
1 parent 570079b commit c35404d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package com.android254.presentation.about.view

import android.content.res.Configuration
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
Expand All @@ -37,6 +38,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.testTag
Expand Down Expand Up @@ -226,12 +228,12 @@ fun OrganizingTeamSection(
Spacer(modifier = Modifier.height(40.dp))

FlowRow(
modifier = Modifier,
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceEvenly
) {
organizingTeam.forEach { teamMember ->
OrganizingTeamComponent(
modifier = Modifier.width(99.dp),
modifier = Modifier.width(105.dp),
teamMember = teamMember,
onClickMember = onClickMember
)
Expand Down

0 comments on commit c35404d

Please sign in to comment.