aksonov/react-native-tableview

Mixing Cell and Item in the TableView Does not Work

Open

#29 ouverte le 29 oct. 2015

Voir sur GitHub
 (8 commentaires) (0 réactions) (0 assignés)Objective-C (179 forks)github user discovery
enhancementhelp wanted

Métriques du dépôt

Stars
 (1 410 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

I have:

                    <TableView style={{flex: 1, paddingTop: 20}}>
                        <Section label="Section 1">
                            <Cell><Text>Item 1</Text></Cell>
                        </Section>

                        <Section label="Section 2">
                            <Item>Item 2</Item>
                        </Section>
                    </TableView>

but all I see is: image

If I remove <Cell><Text>Item 1</Text></Cell> then the "Item 2" shows up: image

Guide contributeur