Skip to content

Commit

Permalink
Added labels to help visualise data (UpdateProfile page)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakaHaceCosas committed Jul 27, 2024
1 parent 39bd14b commit 37502ff
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions app/UpdateProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,15 @@ export default function UpdateProfile() {
{t("subpage_edit_profile.subtitle")}
</BetterText>
<GapView height={15} />
<BetterText
textAlign="normal"
fontWeight="Regular"
fontSize={15}
textColor="#C8C8C8"
>
{t("page_welcome.fragment_one.questions.username")}
</BetterText>
<GapView height={5} />
<TextInput
placeholder={t(
"page_welcome.fragment_one.questions.username"
Expand Down Expand Up @@ -260,6 +269,15 @@ export default function UpdateProfile() {
ref={ref => ref && (inputRefs.current[0] = ref)}
/>
<GapView height={15} />
<BetterText
textAlign="normal"
fontWeight="Regular"
fontSize={15}
textColor="#C8C8C8"
>
{t("page_welcome.fragment_one.questions.height")}
</BetterText>
<GapView height={5} />
<TextInput
placeholder={t(
"page_welcome.fragment_one.questions.height"
Expand Down Expand Up @@ -295,6 +313,15 @@ export default function UpdateProfile() {
ref={ref => ref && (inputRefs.current[1] = ref)}
/>
<GapView height={15} />
<BetterText
textAlign="normal"
fontWeight="Regular"
fontSize={15}
textColor="#C8C8C8"
>
{t("page_welcome.fragment_one.questions.weight")}
</BetterText>
<GapView height={5} />
<TextInput
placeholder={t(
"page_welcome.fragment_one.questions.weight"
Expand Down Expand Up @@ -330,6 +357,15 @@ export default function UpdateProfile() {
ref={ref => ref && (inputRefs.current[2] = ref)}
/>
<GapView height={15} />
<BetterText
textAlign="normal"
fontWeight="Regular"
fontSize={15}
textColor="#C8C8C8"
>
{t("page_welcome.fragment_one.questions.age")}
</BetterText>
<GapView height={5} />
<TextInput
placeholder={t("page_welcome.fragment_one.questions.age")}
value={formData.age}
Expand Down Expand Up @@ -363,6 +399,15 @@ export default function UpdateProfile() {
ref={ref => ref && (inputRefs.current[3] = ref)}
/>
<GapView height={15} />
<BetterText
textAlign="normal"
fontWeight="Regular"
fontSize={15}
textColor="#C8C8C8"
>
{t("page_profile.your_profile_division.gender")}
</BetterText>
<GapView height={5} />
<Swap
id="genderswap"
key="genderswap"
Expand Down

0 comments on commit 37502ff

Please sign in to comment.