Skip to content

Commit

Permalink
Fix horizontal arrangement bug in last row of sample app UI
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyicker committed Mar 23, 2024
1 parent 825fb3d commit 3280a3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ fun MainScreen(mainViewModel: MainViewModel) {
}
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceEvenly,
horizontalArrangement = Arrangement.SpaceBetween,
modifier = Modifier.fillMaxWidth(),
) {
Text("Synchronization ${if (state.synchronizationEnabled) "enabled" else "disabled"}")
Expand Down

0 comments on commit 3280a3e

Please sign in to comment.