Skip to content

Commit

Permalink
make modifier first optional param
Browse files Browse the repository at this point in the history
  • Loading branch information
hbb20 committed Nov 18, 2023
1 parent ebcbc4d commit 9b0e3a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ val countryMasterListTransformer = { countryList: List<CPCountry> ->
@Composable
fun CountryPicker(
alpha2Code: String?,
modifier: Modifier = Modifier,
cpDataStore: CPDataStore = rememberCPDataStore(),
flagProvider: CPFlagProvider? = DefaultEmojiFlagProvider(),
modifier: Modifier = Modifier,
selectedCountryLayout: @Composable ((
country: CPCountry?,
countryFlag: CountryFlag?,
Expand Down

0 comments on commit 9b0e3a3

Please sign in to comment.