File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
composeApp/src/wasmJsMain/kotlin/org/nsh07/nsh07/ui Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import androidx.compose.foundation.layout.*
55import androidx.compose.foundation.lazy.LazyColumn
66import androidx.compose.foundation.lazy.items
77import androidx.compose.foundation.lazy.rememberLazyListState
8+ import androidx.compose.foundation.rememberScrollState
9+ import androidx.compose.foundation.verticalScroll
810import androidx.compose.material3.Icon
911import androidx.compose.material3.IconButton
1012import androidx.compose.material3.MaterialTheme.colorScheme
@@ -72,7 +74,7 @@ fun AppScreen(modifier: Modifier = Modifier) {
7274 .widthIn(max = 1200 .dp)
7375 .then(modifier)
7476 ) {
75- Column (Modifier .padding(vertical = 96 .dp).weight(1f )) {
77+ Column (Modifier .padding(vertical = 96 .dp).weight(1f ).verticalScroll(rememberScrollState()) ) {
7678 Text (
7779 " Nishant Mishra" ,
7880 style = typography.displayLarge.copy(fontSize = 48 .sp),
You can’t perform that action at this time.
0 commit comments