## UP Screen when Keyboard Active ( for : ios , android )
##### Use: <KeyboardAvoidingView> component with <ScrollView>
## Set ( behavior == 'position' , So: [ contentContainerStyle={{flexGrow: 1}} ] property set height of View
```
<Fragment>
<SafeAreaView style={{ flex: 0, backgroundColor: colors.backgroundAuth }} />
<SafeAreaView style={{ flex: 1, backgroundColor: colors.backgroundAuth }}>
<StatusBar barStyle="light-content" hidden />
<KeyboardAvoidingView style={{ flexGrow: 1 }} behavior={ "position"} contentContainerStyle={{flexGrow: 1}} > // --- $$$ : behavior:
<ScrollView contentContainerStyle={{ flexGrow: 1 }} bounces={false} > // --- $$$ : bounces={false} cannot scrolling
<View style={[{ flexGrow: 1, backgroundColor: '', paddingHorizontal: sc.padMax }]}>
{content}
</View>
</ScrollView>
</KeyboardAvoidingView>
</SafeAreaView>
</Fragment>
```