invertase / react-native-material-design

React Native UI Components for Material Design
http://react-native-material-design.github.io
MIT License
3.15k stars 365 forks source link

Drawer API? #109

Closed Tim-W closed 8 years ago

Tim-W commented 8 years ago

In the (new?) Drawer API, a list of children is required. What do I put here? I cannot find it in the example project nor in the documentation. Better documentation would be great.

alt text

Ehesp commented 8 years ago

Children is just whatever is within the component:

<Drawer>
    <View>
        <Text>Children</Text>
    </View>
</Drawer>
SelaO commented 7 years ago

How do you make it appear?