aksonov/react-native-tableview

Mixing Cell and Item in the TableView Does not Work

Open

#29 geöffnet am 29. Okt. 2015

Auf GitHub ansehen
 (8 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Objective-C (179 Forks)github user discovery
enhancementhelp wanted

Repository-Metriken

Stars
 (1.410 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

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

Contributor Guide