react-native-tableview icon indicating copy to clipboard operation
react-native-tableview copied to clipboard

Table not visible in Dark Mode

Open chetstone opened this issue 4 years ago • 5 comments

Using the (corrected) simple example from https://github.com/aksonov/react-native-tableview/issues/214#issuecomment-631751644:

      <View style={{ flex: 1 }}>
        <TableView style={{ flex: 1 }} >
          <Section label="Section 1">
            <Item key={1}>Item 1</Item>
            <Item key={2}>Item 1</Item>
            <Item key={3}>Item 1</Item>
            <Item key={4}>Item 1</Item>
            <Item key={5}>Item 1</Item>
            <Item key={6}>Item 1</Item>
            <Item key={7}>Item 1</Item>
          </Section>
        </TableView>
      </View>

the items are not visible except for the section header and the separators as shown in the screenshot below. When you touch an item, it appears in dark (reverse) color, as shown in the second screenshot.

I tried adding the transparent prop to the <Item> as suggested in #210, but that has no effect. image

image

chetstone avatar May 20 '20 22:05 chetstone