Skip to content

Commit

Permalink
changes in countrylist from onboarding
Browse files Browse the repository at this point in the history
changes in countrylist from onboarding
  • Loading branch information
Kalyani790 committed Jun 29, 2023
1 parent dbc012c commit c4b41a5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/screens/localization/CountrySelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,19 @@ const CountrySelection = (props: any):any => {
/>

<SelectionView>
{userIsOnboarded==true ?
<FlatList
data={localization}
renderItem={renderItem}
keyExtractor={(item):any => item.countryId.toString()}
/>
/>:
<FlatList
inverted
data={localization}
contentContainerStyle={{ flexDirection: 'column-reverse' }}
renderItem={renderItem}
keyExtractor={(item):any => item.countryId.toString()}
/>}
</SelectionView>
{country ? (
<ButtonSection>
Expand Down

0 comments on commit c4b41a5

Please sign in to comment.