You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
ReactOrganizer/tabs/Stundenliste.js

33 lines
822 B

import React, {Component} from 'react';
import {StyleSheet} from 'react-native';
import {Body, Left, List, ListItem, Separator, Text} from 'native-base';
export default class Stundenliste extends Component {
render() {
return (
<List>
<Separator bordered>
<Text>20.03.2017</Text>
</Separator>
<ListItem icon>
<Left><Text>1.</Text></Left>
<Body>
<Text>Englisch</Text>
<Text note>Englisch</Text>
</Body>
</ListItem>
</List>
);
}
}
var styles = StyleSheet.create({
roundText: {
height: 30,
borderRadius: 15,
width: 30,
backgroundColor: 'green'
}
});