native-pytech 1.0.134 → 1.0.136
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/dist/libs/login/src/Screen/Container.ios.js +1 -1
- package/dist/libs/page/src/components/Page/index.android.js +1 -1
- package/dist/libs/page/src/components/Page/index.js +2 -2
- package/dist/libs/pickerPage/src/components/Content/index.js +1 -1
- package/dist/libs/pickerPage/src/components/Item/index.js +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export default memo(({ children }) => {
|
|
|
6
6
|
const { colorScheme } = useApp();
|
|
7
7
|
const Theme = colors.theme[colorScheme];
|
|
8
8
|
return (<TouchableWithoutFeedback>
|
|
9
|
-
<ScrollView contentContainerStyle={[styles.pagina, { backgroundColor: Theme.backgroundColor }]} automaticallyAdjustKeyboardInsets={true}>
|
|
9
|
+
<ScrollView showsVerticalScrollIndicator={false} contentContainerStyle={[styles.pagina, { backgroundColor: Theme.backgroundColor }]} automaticallyAdjustKeyboardInsets={true}>
|
|
10
10
|
{children}
|
|
11
11
|
</ScrollView>
|
|
12
12
|
</TouchableWithoutFeedback>);
|
|
@@ -4,7 +4,7 @@ import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
|
4
4
|
export default memo(({ children, style }) => {
|
|
5
5
|
const { bottom, top } = useSafeAreaInsets();
|
|
6
6
|
return (<KeyboardAvoidingView style={{ flex: 1 }} behavior={'height'} keyboardVerticalOffset={bottom + top}>
|
|
7
|
-
<ScrollView contentContainerStyle={[{ flexGrow: 1 }, style]}>
|
|
7
|
+
<ScrollView contentContainerStyle={[{ flexGrow: 1 }, style]} showsVerticalScrollIndicator={false}>
|
|
8
8
|
{children}
|
|
9
9
|
</ScrollView>
|
|
10
10
|
</KeyboardAvoidingView>);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { memo } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ScrollView } from 'react-native';
|
|
3
3
|
export default memo(({ children, style }) => {
|
|
4
|
-
return (<ScrollView style={{ flex: 1 }} automaticallyAdjustKeyboardInsets={true} contentContainerStyle={style} showsVerticalScrollIndicator={
|
|
4
|
+
return (<ScrollView style={{ flex: 1 }} automaticallyAdjustKeyboardInsets={true} contentContainerStyle={style} showsVerticalScrollIndicator={false}>
|
|
5
5
|
{children}
|
|
6
6
|
</ScrollView>);
|
|
7
7
|
});
|
|
@@ -5,7 +5,7 @@ import { Provider } from '../../context/page';
|
|
|
5
5
|
export default memo(({ children, selected, onSelectionChange }) => {
|
|
6
6
|
const value = useMemo(() => ({ selected, onSelectionChange }), [selected]);
|
|
7
7
|
return (<Provider value={value}>
|
|
8
|
-
<ScrollView>
|
|
8
|
+
<ScrollView showsVerticalScrollIndicator={false}>
|
|
9
9
|
<Table>
|
|
10
10
|
{children}
|
|
11
11
|
</Table>
|
|
@@ -12,5 +12,5 @@ export default memo(({ itemKey, title, ionIconName, icon }) => {
|
|
|
12
12
|
{title && (<Table.Option.Components.TextView>
|
|
13
13
|
<Table.Option.Components.Text text={title}/>
|
|
14
14
|
</Table.Option.Components.TextView>)}
|
|
15
|
-
</>} childrenRight={itemKey !== selected ? undefined : (<Ionicons name='checkmark
|
|
15
|
+
</>} childrenRight={itemKey !== selected ? undefined : (<Ionicons name='checkmark' size={24} color={Colors.especiales.azul}/>)}/>);
|
|
16
16
|
});
|