react-native-boxes 1.4.34 → 1.4.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/Modal.tsx +1 -1
package/package.json
CHANGED
package/src/Modal.tsx
CHANGED
|
@@ -414,7 +414,6 @@ export const DropDownView = (props: DropDownViewProps) => {
|
|
|
414
414
|
}}
|
|
415
415
|
//@ts-ignore
|
|
416
416
|
style={Object.assign({
|
|
417
|
-
width: '100%',
|
|
418
417
|
padding: theme.dimens.space.md,
|
|
419
418
|
margin: theme.dimens.space.md
|
|
420
419
|
}, props.style || {})}>
|
|
@@ -442,6 +441,7 @@ export const DropDownView = (props: DropDownViewProps) => {
|
|
|
442
441
|
{
|
|
443
442
|
(visible && props.listType == 'horizontal-list') ? (
|
|
444
443
|
<FlatList
|
|
444
|
+
showsHorizontalScrollIndicator={false}
|
|
445
445
|
style={[{
|
|
446
446
|
marginTop: theme.dimens.space.sm,
|
|
447
447
|
marginBottom: theme.dimens.space.sm,
|