From 7653d6960b2e723b43919195ef5451abe39b9fd4 Mon Sep 17 00:00:00 2001 From: Josh Heyse Date: Sat, 30 Jan 2021 22:23:00 -0600 Subject: [PATCH] Added field label and updated option text --- Secretive/Views/CreateSecretView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Secretive/Views/CreateSecretView.swift b/Secretive/Views/CreateSecretView.swift index 5746722..f8a3d60 100644 --- a/Secretive/Views/CreateSecretView.swift +++ b/Secretive/Views/CreateSecretView.swift @@ -27,9 +27,9 @@ struct CreateSecretView: View { } HStack { VStack(spacing: 20) { - Picker("", selection: $requiresAuthentication) { - Text("Requires authentication (Biometrics or Password) before each use").tag(true) - Text("Does not require authentication for each use once the user unlocks the computer").tag(false) + Picker("Authentication", selection: $requiresAuthentication) { + Text("Required (Biometrics or Password) before each use").tag(true) + Text("Not required for each use once the user unlocks the computer").tag(false) } .pickerStyle(RadioGroupPickerStyle()) }