i want to show/hide the password text based on the user click. But i am getting the following error saying:
export class App { password = \"secret\"
// Modify style as you need // variable show_button: Boolean = false; show_eye: Boolean = false; //Function showPassword() { this.show_button = !this.show_button; this.show_eye = !this.show_eye; }