react-native-popup-menu icon indicating copy to clipboard operation
react-native-popup-menu copied to clipboard

Hebrew language missing text

Open roei133 opened this issue 5 years ago • 0 comments

When I type text in Hebrew then it is not displayed in the popup menu, only if I type a word in English it works. How is it handled?

<View style={{
          backgroundColor: 'pink', width: 100, height: 100
        }}>
          <MenuProvider style={{ backgroundColor: 'pink' }}>
            <Menu onSelect={value => alert(`Selected number: ${value}`)}>
              <MenuTrigger>
                <Icon
                  style={{
                    fontSize: 40,
                  }}
                  name="dots-vertical"
                />
              </MenuTrigger>
              <MenuOptions>
                <MenuOption value={1} text='אחת' />
                <MenuOption value={2}>
                  <Text style={{ color: 'red' }}>שתיים</Text>
                </MenuOption>
                <MenuOption value={3} disabled={true} text='שלוש' />
              </MenuOptions>
            </Menu>
          </MenuProvider>
        </View>

roei133 avatar Dec 02 '20 09:12 roei133