Skip to content

Commit

Permalink
Added scroll functionally
Browse files Browse the repository at this point in the history
  • Loading branch information
panos1b committed Dec 26, 2024
1 parent 1c1b939 commit 3c713fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/com/example/estiaseek/ui/profile/profile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.Image
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -56,6 +58,7 @@ fun Profile() {
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.verticalScroll(rememberScrollState())
) {
// Video Player Section
Box(
Expand Down

0 comments on commit 3c713fa

Please sign in to comment.