Fluent dialog for display custom content with title and buttons
yarn add react-native-content-dialog
import React from 'react';
import { Button, Text,View } from 'react-native';
import { ContentDialog } from 'react-native-content-dialog';
export default function App(): JSX.Element {
const [showDialog, setShowDialog] = React.useState(false);
return (
<View>
<Button title='Show dialog' onPress={() => {setShowDialog(true)}}/>
<ContentDialog
title='This is my dialog title'
show={showDialog}
close={() => setShowDialog(false)}>
<Text>This is my dialog content</Text>
</ContentDialog>
</View>
);
}
See this live in this Expo Snack.