Skip to content

Commit

Permalink
Added a menu icon to the navbar of the SignUp page
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammadNSC committed Nov 23, 2023
1 parent 8758546 commit 320d949
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/src/main/java/com/example/belindas_closet/screen/SignUp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import androidx.compose.foundation.layout.wrapContentSize
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material.icons.filled.Menu
import androidx.compose.material3.Button
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
Expand Down Expand Up @@ -87,6 +88,15 @@ fun SignUpPage( navController: NavHostController) {
) {
Icon(imageVector = Icons.Default.ArrowBack, contentDescription = "Back")
}
},
actions = {
IconButton(
onClick = {
// Handle menu icon click
}
) {
Icon(imageVector = Icons.Default.Menu, contentDescription = "Menu")
}
}
)
Column (
Expand Down

0 comments on commit 320d949

Please sign in to comment.