fix(deps): update dev.chrisbanes.compose:compose-bom to 2023.07.00-alpha02

This commit is contained in:
Harsh Shandilya 2023-07-27 02:36:28 +05:30
parent c29e4065d6
commit ed85ba905d
No known key found for this signature in database
5 changed files with 9 additions and 9 deletions

View file

@ -7,7 +7,7 @@
package dev.msfjarvis.claw.common.comments
import androidx.compose.foundation.lazy.LazyListScope
import androidx.compose.material3.Divider
import androidx.compose.material3.HorizontalDivider
import dev.msfjarvis.claw.database.local.PostComments
import dev.msfjarvis.claw.model.Comment
@ -95,7 +95,7 @@ private fun LazyListScope.node(
htmlConverter = htmlConverter,
toggleExpanded = toggleExpanded,
)
Divider()
HorizontalDivider()
}
if (node.children.isNotEmpty()) {
nodes(

View file

@ -33,8 +33,8 @@ import androidx.compose.material.icons.filled.Favorite
import androidx.compose.material.icons.filled.FavoriteBorder
import androidx.compose.material3.Badge
import androidx.compose.material3.BadgedBox
import androidx.compose.material3.Divider
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
@ -98,7 +98,7 @@ fun LobstersCard(
postActions.toggleSave(post)
},
)
Divider(modifier = Modifier.width(48.dp))
HorizontalDivider(modifier = Modifier.width(48.dp))
CommentsButton(
commentCount = post.commentCount,
modifier =