I have a login page and for the password, the unique option it is to use an entry with the parameter IsPassword as true. But it is still a string, so in my view model I can't use SecureString for the binding, I have to use a string, that is a plain text.
My idea it is to store the credentials in SecureStorage to avoid to enter the credentials every time, as work many others applications in which is it not needed to log every time the application is opened. But I don't know if this is good option.
Is this, the use of string the unique solution or are there better options?
Thanks.