[APP-1684] Some contact import tweaks (#9555)

* Handle download link

* Improve NUX geo gating from #9549

* Fix alignment of phone code select

* Show full name

* Add gate to nux banner

* Add gate to settings screen

* Invert gate check in settings, whoops
This commit is contained in:
Eric Bailey
2025-12-15 13:35:28 -06:00
committed by GitHub
parent 348e7fa379
commit da87515d0a
11 changed files with 138 additions and 60 deletions
@@ -1,4 +1,5 @@
import {Fragment, useMemo} from 'react'
import {Text as RNText} from 'react-native'
import {Image} from 'expo-image'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -113,5 +114,5 @@ function Flag({unicodeFlag, svgFlag}: {unicodeFlag: string; svgFlag: any}) {
/>
)
}
return unicodeFlag + ' '
return <RNText style={[{lineHeight: 21}]}>{unicodeFlag + ' '}</RNText>
}