Skip to content

Commit

Permalink
Code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
T8RIN committed Nov 15, 2024
1 parent 3f18979 commit 3e2dfa3
Show file tree
Hide file tree
Showing 5 changed files with 651 additions and 450 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,14 @@ fun CompareContent(
val isPortrait by isPortraitOrientationAsState()

var showShareSheet by rememberSaveable { mutableStateOf(false) }
Box(
Modifier
.fillMaxSize()
.nestedScroll(scrollBehavior.nestedScrollConnection)
) {
Column(horizontalAlignment = Alignment.CenterHorizontally) {

Box {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier
.fillMaxSize()
.nestedScroll(scrollBehavior.nestedScrollConnection)
) {
var isLabelsEnabled by rememberSaveable {
mutableStateOf(true)
}
Expand Down
Loading

0 comments on commit 3e2dfa3

Please sign in to comment.