Skip to content

Commit

Permalink
Added a menu icon to the navbar of the login page (#186)
Browse files Browse the repository at this point in the history
Co-authored-by: RobelHailu <[email protected]>
  • Loading branch information
MuhammadNSC and Robel-003 authored Nov 24, 2023
1 parent 5214bff commit 856c1f2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/src/main/java/com/example/belindas_closet/screen/Login.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import androidx.compose.foundation.text.ClickableText
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,14 @@ fun LoginPage(navController: NavHostController) {
) {
Icon(imageVector = Icons.Default.ArrowBack, contentDescription = "Back")
}
},
actions = {
IconButton(
onClick = {
}
) {
Icon(imageVector = Icons.Default.Menu, contentDescription = "Menu")
}
}
)

Expand Down

0 comments on commit 856c1f2

Please sign in to comment.