Skip to content

Commit fd06479

Browse files
PururunRawa
authored andcommitted
Align scrollbar always to the right in view logs
1 parent 95fec4f commit fd06479

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/ViewLogsScreen.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package net.mullvad.mullvadvpn.compose.screen
22

33
import android.content.Context
44
import androidx.compose.foundation.layout.fillMaxSize
5+
import androidx.compose.foundation.layout.fillMaxWidth
56
import androidx.compose.foundation.layout.padding
67
import androidx.compose.foundation.lazy.LazyColumn
78
import androidx.compose.foundation.lazy.items
@@ -129,7 +130,8 @@ fun ViewLogsScreen(
129130
LazyColumn(
130131
state = listState,
131132
modifier =
132-
Modifier.drawVerticalScrollbar(
133+
Modifier.fillMaxWidth()
134+
.drawVerticalScrollbar(
133135
listState,
134136
MaterialTheme.colorScheme.primary.copy(alpha = AlphaScrollbar)
135137
)

0 commit comments

Comments
 (0)