Hi,
I am using react-native-material-menu.its working fine.
import React, { useState } from 'react';
import { View, Text } from 'react-native';
import { Menu, MenuItem, MenuDivider } from 'react-native-material-menu';
export default function App() {
const [visible, setVisible] = useState(false);
const hideMenu = () => setVisible(false);
const showMenu = () => setVisible(true);
return (
);
}
the issue is i want to apply for three dot menu in flatlist. so if i click one all dot menu will open.i want if i select one post.that post menu only appear

Srinivasan RamamoorthiPosted Nov 20, 2021, 4:49 AM