Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ exports.examples = [
{
title: 'Keyboard Avoiding View with different behaviors',
description:
('Specify how to react to the presence of the keyboard. Android and iOS both interact' +
('Specify how to react to the presence of the keyboard. Android and iOS both interact ' +
'with this prop differently. On both iOS and Android, setting behavior is recommended.') as string,
render(): React.Node {
return <KeyboardAvoidingViewBehaviour />;
Expand All @@ -260,20 +260,23 @@ exports.examples = [
{
title: 'Keyboard Avoiding View with keyboardVerticalOffset={distance}',
description:
('This is the distance between the top of the user screen and the react native' +
('This is the distance between the top of the user screen and the React Native ' +
'view, may be non-zero in some use cases. Defaults to 0.') as string,
render(): React.Node {
return <KeyboardAvoidingVerticalOffset />;
},
},
{
title: 'Keyboard Avoiding View with enabled={false}',
description: 'Disables the KeyboardAvoidingView.' as string,
render(): React.Node {
return <KeyboardAvoidingDisabled />;
},
},
{
title: 'Keyboard Avoiding View with contentContainerStyle',
description:
'Specify the style of the content container View when behavior is set to position.' as string,
render(): React.Node {
return <KeyboardAvoidingContentContainerStyle />;
},
Expand Down