Skip to content

Commit

Permalink
fix: deprecated 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 9, 2024
1 parent 52143d4 commit 197b492
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.CircularProgressIndicator
import androidx.compose.material3.Divider
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Icon
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
Expand Down Expand Up @@ -106,10 +106,10 @@ fun AnnouncementDetailScreen(
isLoading = uiState.isLoading
)
item {
Divider(
HorizontalDivider(
modifier = Modifier.fillMaxWidth(),
color = Grey200,
thickness = 1.dp
thickness = 1.dp,
color = Grey200
)
}
organizationField(
Expand Down

0 comments on commit 197b492

Please sign in to comment.