React-native-vector-icons: Ionicons ios-cog-outline not working

Created on 1 Mar 2017  路  4Comments  路  Source: oblador/react-native-vector-icons

ios-cog-outline not working. its seems full gray with no spaces.

Most helpful comment

See https://github.com/oblador/react-native-vector-icons/issues/491#issuecomment-318905777. Really annoying, but the problem seems to lie with Ionicons itself. Since Ionicons seems to be more or less unmaintained, I can't see how I can fix this aside from forking the project and not sure I want to do that. I would merge a PR with someone ready to maintain a fork of Ionicons.

All 4 comments

Hi, do you have a screenshot and reproducible code I can test with?

Stumbled across this one, too.

@oblador Here's a screenshot. Top is ios-cog, Bottom is ios-cog-outline.

image

// EDIT

Some code, too:

import Icon from 'react-native-vector-icons/Ionicons'

const IconTest = () => (
  <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
    <Icon name="ios-cog" size={200} color="#00796B" />
    <Icon name="ios-cog-outline" size={200} color="#00796B" />
  </View>
);

Still needed.

See https://github.com/oblador/react-native-vector-icons/issues/491#issuecomment-318905777. Really annoying, but the problem seems to lie with Ionicons itself. Since Ionicons seems to be more or less unmaintained, I can't see how I can fix this aside from forking the project and not sure I want to do that. I would merge a PR with someone ready to maintain a fork of Ionicons.

Was this page helpful?
0 / 5 - 0 ratings