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.
39 lines
1.1 KiB
39 lines
1.1 KiB
import React, {Component} from 'react';
|
|
import {StyleSheet} from 'react-native';
|
|
import {Body, Container, Left, List, ListItem, Separator, Text} from 'native-base';
|
|
import DefaultHeader from "../components/DefaultHeader";
|
|
|
|
export default class Klausurplan extends Component {
|
|
render() {
|
|
return (
|
|
<Container>
|
|
|
|
<DefaultHeader title="Klausurplan" navigation={this.props.navigation}/>
|
|
<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>
|
|
</Container>
|
|
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
roundText: {
|
|
height: 30,
|
|
borderRadius: 15,
|
|
width: 30,
|
|
backgroundColor: 'green'
|
|
}
|
|
}); |