KS
Size: a a a
KS
KS
ET
GB
Z
KS
GB
GB
How many items to render in the initial batch. This should be enough to fill the screen but not much more. Note these items will never be unmounted as part of the windowed rendering in order to improve perceived performance of scroll-to-top actions.
KS
GB
Determines the maximum number of items rendered outside of the visible area, in units of visible lengths. So if your list fills the screen, then windowSize={21} (the default) will render the visible screen area plus up to 10 screens above and 10 below the viewport. Reducing this number will reduce memory consumption and may improve performance, but will increase the chance that fast scrolling may reveal momentary blank areas of unrendered content.
ДА
style: StyleProp<ViewStyle>
GB
AE
return(
<TextInput style={SharedStyles.loginTextInput}
placeholder='Email'
onSubmitEditing={() => { this.passInput.focus(); }}
blurOnSubmit={false}
></TextInput>
<TextInput style={SharedStyles.loginTextInput}
placeholder='Password'
ref={(input) => { this.passInput = input; }}
></TextInput>
);
TypeError: undefined is not an object (evaluating '_this.passInput = input')
KS
Determines the maximum number of items rendered outside of the visible area, in units of visible lengths. So if your list fills the screen, then windowSize={21} (the default) will render the visible screen area plus up to 10 screens above and 10 below the viewport. Reducing this number will reduce memory consumption and may improve performance, but will increase the chance that fast scrolling may reveal momentary blank areas of unrendered content.
GB
KS
S
S
AE
S