Skip to content

Commit

Permalink
added <Languages>
Browse files Browse the repository at this point in the history
  • Loading branch information
reujab committed May 27, 2021
1 parent db8aa04 commit 87835e3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions App/EditSetScreen/Languages/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from "react"
import { Picker } from "@react-native-picker/picker"

export default class LanguagePicker extends React.Component {
render(): JSX.Element {
// TODO: more languages
return (
<>
<Picker.Item label="English" value="en" />
<Picker.Item label="Spanish" value="es" />
<Picker.Item label="German" value="de" />
</>
)
}
}

0 comments on commit 87835e3

Please sign in to comment.