Skip to content

Commit

Permalink
Password Decryption Support
Browse files Browse the repository at this point in the history
  • Loading branch information
SAUL committed Dec 3, 2024
1 parent 487a28a commit 4c50b6b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/kotlin/ui/components/dialog/MasterPasswordDialog.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ package ui.components.dialog

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Warning
import androidx.compose.material3.Button
import androidx.compose.material3.ButtonColors
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -44,6 +47,12 @@ fun MasterPasswordDialog(
verticalArrangement = Arrangement.spacedBy(15.dp, Alignment.CenterVertically),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Icon(
imageVector = Icons.Filled.Warning,
contentDescription = "Warning",
modifier = Modifier.size(30.dp),
tint = Color.Yellow
)
Text(
text = "Enter your master password.",
color = Color.White,
Expand Down

0 comments on commit 4c50b6b

Please sign in to comment.