Package-level declarations
Functions
Link copied to clipboard
fun KwikCountryCodeButton(modifier: Modifier = Modifier, showFlags: Boolean = false, showCountryCode: Boolean = false, showDialingCode: Boolean = true, country: KwikCountryInfo?, enabled: Boolean = true, shape: Shape = MaterialTheme.shapes.medium, onClick: () -> Unit)
Link copied to clipboard
Link copied to clipboard
fun KwikCountryCodePicker(state: LazyListState, includeOnlyCountries: List<KwikCountry> = emptyList(), omitCountries: List<KwikCountry> = emptyList(), enableSearch: Boolean = true, noCountryFoundMessage: String = "No country found", onSelect: (KwikCountryInfo) -> Unit)
Link copied to clipboard
fun KwikCountryPicker(initialCountry: KwikCountry? = null, showFlags: Boolean = false, title: String = "Select your country", countryPicked: (KwikCountryInfo) -> Unit)
A country picker component that allows users to select a country from a list.
Link copied to clipboard
fun KwikCountryPickerDialog(open: Boolean, title: String, countryListState: LazyListState, onSelect: (KwikCountryInfo) -> Unit, onDismiss: () -> Unit)