blob: 1371c64503d0c6429bcd543a6ecee8cd58b59e2a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import React from 'react'
import { StyleProp, ViewStyle } from 'react-native'
import { KeyboardOffsets, ScreenPresets } from './screen.presets'
export interface ScreenProps {
/**
* Children components.
*/
children?: React.ReactNode
/**
* An optional style override useful for padding & margin.
*/
style?: StyleProp<ViewStyle>
/**
* One of the different types of presets.
*/
preset?: ScreenPresets
/**
* An optional background color
*/
backgroundColor?: string
/**
* An optional status bar setting. Defaults to light-content.
*/
statusBar?: 'light-content' | 'dark-content'
/**
* Should we not wrap in SafeAreaView? Defaults to false.
*/
unsafe?: boolean
/**
* By how much should we offset the keyboard? Defaults to none.
*/
keyboardOffset?: KeyboardOffsets
/**
* Should keyboard persist on screen tap. Defaults to handled.
* Only applies to scroll preset.
*/
keyboardShouldPersistTaps?: 'handled' | 'always' | 'never'
}
|