File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
library/src/main/kotlin/com/ninecraft/booket/feature/library/component
search/src/main/kotlin/com/ninecraft/booket/feature/search Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ fun LibraryBookItem(
7676 overflow = TextOverflow .Ellipsis ,
7777 maxLines = 1 ,
7878 style = ReedTheme .typography.label1Medium,
79- modifier = Modifier .weight(1f , fill = false ),
79+ modifier = Modifier .weight(0.7f , fill = false ),
8080 )
8181 Spacer (Modifier .width(ReedTheme .spacing.spacing1))
8282 VerticalDivider (
@@ -91,7 +91,7 @@ fun LibraryBookItem(
9191 overflow = TextOverflow .Ellipsis ,
9292 maxLines = 1 ,
9393 style = ReedTheme .typography.label1Medium,
94- modifier = Modifier .weight(1f , fill = false ),
94+ modifier = Modifier .weight(0.3f , fill = false ),
9595 )
9696 }
9797 Spacer (Modifier .height(ReedTheme .spacing.spacing4))
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ import com.ninecraft.booket.feature.screens.SearchScreen
3636import com.ninecraft.booket.feature.search.component.BookItem
3737import com.ninecraft.booket.feature.search.component.BookRegisterBottomSheet
3838import com.ninecraft.booket.feature.search.component.BookRegisterSuccessBottomSheet
39+ import com.ninecraft.booket.feature.search.component.RecentSearchTitle
40+ import com.ninecraft.booket.feature.search.component.SearchItem
3941import com.slack.circuit.codegen.annotations.CircuitInject
4042import dagger.hilt.android.components.ActivityRetainedComponent
4143import kotlinx.collections.immutable.toImmutableList
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ fun BookItem(
7474 overflow = TextOverflow .Ellipsis ,
7575 maxLines = 1 ,
7676 style = ReedTheme .typography.label1Medium,
77- modifier = Modifier .weight(1f , fill = false ),
77+ modifier = Modifier .weight(0.7f , fill = false ),
7878 )
7979 Spacer (Modifier .width(ReedTheme .spacing.spacing1))
8080 VerticalDivider (
@@ -89,7 +89,7 @@ fun BookItem(
8989 overflow = TextOverflow .Ellipsis ,
9090 maxLines = 1 ,
9191 style = ReedTheme .typography.label1Medium,
92- modifier = Modifier .weight(1f , fill = false ),
92+ modifier = Modifier .weight(0.3f , fill = false ),
9393 )
9494 }
9595 }
You can’t perform that action at this time.
0 commit comments