You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whe the picker is presented in the ui the loading is displayed but it never disappears , it's like the connections is broken but I use wifi and mobile connection and nothing
Issue Description
Whe the picker is presented in the ui the loading is displayed but it never disappears , it's like the connections is broken but I use wifi and mobile connection and nothing
Steps to Reproduce / Code Snippets
<CountryPicker
{...{
countryCode,
callingCode,
withAlphaFilter,
withCallingCode,
withCurrency,
withEmoji,
withCountryNameButton,
withCurrencyButton,
withCallingCodeButton,
withFlagButton,
withCloseButton,
withFilter,
withFlag,
withModal,
visible,
}}
containerButtonStyle={styles.countryPickerContainer}
onSelect={onCountryPickerSelect}
/>
const [countryCode, setCountryCode] = useState('US');
const [callingCode, setCallingCode] = useState('+1');
const withAlphaFilter: boolean = true;
const withCallingCode: boolean = true;
const withCurrency: boolean = false;
const withEmoji: boolean = false;
const withCountryNameButton: boolean = false;
const withCurrencyButton: boolean = false;
const withCallingCodeButton: boolean = true;
const withFlagButton: boolean = true;
const withCloseButton: boolean = true;
const withFilter: boolean = true;
const withFlag: boolean = true;
const withModal: boolean = true;
const visible: boolean = false;
export const styles = StyleSheet.create({
});
Expected Results
Select the country from the list
Additional Information
Deploying from MacBook Pro Ventura 13.1 Apple M2
The text was updated successfully, but these errors were encountered: