Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ interface Props {
searchMessage?: string,
androidWindowSoftInputMode?: string,
initialState?: string,
statusBarTranslucent?: boolean,
}

export const CountryPicker = ({
Expand All @@ -89,6 +90,7 @@ export const CountryPicker = ({
showOnly,
ListHeaderComponent,
itemTemplate: ItemTemplate = CountryButton,
statusBarTranslucent,
...rest
}: Props) => {
// ToDo refactor exclude and showOnly props to objects
Expand Down Expand Up @@ -224,6 +226,7 @@ export const CountryPicker = ({
visible={showModal}
onShow={openModal}
onRequestClose={onRequestClose}
statusBarTranslucent={statusBarTranslucent}
>
<View
style={{
Expand Down