instea/react-native-popup-menu

Hebrew language missing text

roei133 opened this issue · 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>