using Avalonia.Controls; using Avalonia.Markup.Xaml; namespace DodoSSH.Client.Android.Views; /// /// The one setting this phone has: whether a fingerprint may open the keychain. /// /// /// Takes the shell as its data context, like the hub it is reached from, because both commands on it are /// the shell's — registering a device key needs the session, the server connection and the keystore, and /// all three are the state machine's. /// internal sealed partial class PreferencesScreen : UserControl { public PreferencesScreen() => AvaloniaXamlLoader.Load(this); }