Skip to main content

Popover

Popover displays content positioned relative to an anchor element. It supports configurable placement and dismissal via backdrop press.

Import

import { Popover } from '@ui-kitten/components';

Basic Usage

import React, { useState } from 'react';
import { StyleSheet } from 'react-native';
import { Layout, Popover, Button, Text } from '@ui-kitten/components';

const PopoverExample = () => {
const [visible, setVisible] = useState(false);

const renderToggleButton = () => (
<Button onPress={() => setVisible(true)}>Show Popover</Button>
);

return (
<Layout style={{ flex: 1, padding: 16 }}>
<Popover
visible={visible}
anchor={renderToggleButton}
onBackdropPress={() => setVisible(false)}
placement="bottom"
>
<Layout style={{ padding: 16 }}>
<Text>Popover content goes here.</Text>
</Layout>
</Popover>
</Layout>
);
};

Props

PropertyTypeDefaultDescription
visiblebooleanfalseWhether the popover is visible.
anchor() => ReactElement-Render function for the anchor element the popover is positioned relative to.
onBackdropPress() => voidundefinedCalled when the area outside the popover is pressed.
placement'top' | 'top start' | 'top end' | 'bottom' | 'bottom start' | 'bottom end' | 'left' | 'left start' | 'left end' | 'right' | 'right start' | 'right end' | 'inner' | 'inner top' | 'inner bottom''bottom'Position of the popover relative to the anchor.
backdropStyleViewStyleundefinedStyle applied to the backdrop.
childrenReactNode-Content rendered inside the popover.

Storybook

Live examples coming soon via Storybook.