Use this file to discover all available pages before exploring further.
PrimerSelectCountryScope manages the country picker UI, exposed via PrimerCardFormScope.selectCountry. Use it to customize the country selection experience.
public struct PrimerSelectCountryState: Equatable { var countries: [PrimerCountry] var filteredCountries: [PrimerCountry] var searchQuery: String var isLoading: Bool var selectedCountry: PrimerCountry?}
public struct PrimerCountry: Equatable { let code: String // ISO 3166-1 alpha-2 (e.g., "US") let name: String // Localized name let flag: String? // Flag emoji let dialCode: String? // Dialing code}