Auto focus name for editing a workout

Closes #57
This commit is contained in:
Brandon Presley 2022-09-25 23:40:27 +13:00
parent e4e1c675fa
commit 2dd2ced21d
1 changed files with 6 additions and 1 deletions

View File

@ -92,7 +92,12 @@ export default function EditWorkout() {
return (
<View style={{padding: PADDING}}>
<ScrollView style={{height: '90%'}}>
<MassiveInput label="Name" value={name} onChangeText={setName} />
<MassiveInput
autoFocus
label="Name"
value={name}
onChangeText={setName}
/>
{!!settings.steps && (
<MassiveInput
selectTextOnFocus={false}