Code Monkey home page Code Monkey logo

Comments (11)

ArthurKnoep avatar ArthurKnoep commented on September 3, 2024 2

I'm also having this issue but on Android. When I open the menu, it take up to 5 seconds to open.
However, I have not tested on iOS

from react-native-material-menu.

mxck avatar mxck commented on September 3, 2024 2

@zoellex did you try production mode also? Did you use JS chrome debugging?

from react-native-material-menu.

joselazarosiqueira avatar joselazarosiqueira commented on September 3, 2024

Same problem on Android.

from react-native-material-menu.

farshed avatar farshed commented on September 3, 2024

I'm facing a similar issue on Android. The menu takes ~5 seconds to show up, but only the first time.

from react-native-material-menu.

mxck avatar mxck commented on September 3, 2024

@zoellex @ArthurKnoep @joselazarosiqueira @eff-society did you try on real devices or emulator?
Just try on real devices or try use production mode.

If bug will still exits I will reopen issue.

from react-native-material-menu.

zoellex avatar zoellex commented on September 3, 2024

Actually I tried it on 3 different iPhones and iOS versions and it still doesn't work. @mxck

from react-native-material-menu.

mxck avatar mxck commented on September 3, 2024

@zoellex can you post some code?

from react-native-material-menu.

smartsuhani avatar smartsuhani commented on September 3, 2024

Was facing the same issue. If debug mode is on, try after stopping debug mode. It resolved in my case.

from react-native-material-menu.

bjh0501 avatar bjh0501 commented on September 3, 2024

me too
same issue

this is android

Screen Source

const InputPickMenu = () => {
  let refMenu = useRef(null);
 
  const setMenuRef = ref => {
    refMenu = ref;
  };
 
  const reportPopup = () => {
    refMenu.hide();
    NavigationService.navigate("Report", {
      reportedMemberNo: memberNo,
      reportedObjectFlag: "P",
      reportedObjectNo:memberNo
    })
  };

  const goChatting = () => {
    refMenu.hide();
    NavigationService.navigate("채팅")
  };
 
  const showMenu = () => {
    refMenu.show();
  };
   
  return (
    <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
      <Menu
        ref={setMenuRef}
        button={
        <Icon
          name='dots-three-vertical'
          type='entypo'
          size={32}
          onPress={showMenu}
        />}
      >
        <MenuItem onPress={goChatting}>대화하기</MenuItem>
        <MenuItem onPress={reportPopup}>신고하기</MenuItem>
      </Menu>
    </View>
  );
}

Navigation source

<Stack.Screen
        name="InputPick"
        component={InputPick}
        options={{
          title: '',
          headerRight:(props)=>(
            <InputPickMenu/>
          )
        }}
      />

from react-native-material-menu.

cenaHara avatar cenaHara commented on September 3, 2024

same issue,any solution ?

from react-native-material-menu.

cenaHara avatar cenaHara commented on September 3, 2024

when turn on debug mode , menu show but i turn off debug or build release , menu no show
my code :


{
list.map((item, index) => {
return <MenuItem
key={index}
style={[styles.containStyle, ( index === list.length - 1 && styles.containStyleBottom )]}
textStyle={styles.textStyle}
onPress={() => onPressMenu(item,index)}>{item}
})
}

from react-native-material-menu.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.