diff --git a/src/screens/Other/LicenceScreen.js b/src/screens/Other/LicenceScreen.js new file mode 100644 index 0000000..fe77487 --- /dev/null +++ b/src/screens/Other/LicenceScreen.js @@ -0,0 +1,26 @@ +// @flow + +import * as React from 'react'; +import {Card, withTheme} from 'react-native-paper'; +import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView'; +import Markdown from 'react-native-markdown-display'; + +const licence = "Here comes the licence content" + +class LicenceScreen extends React.Component { + render(): React.Node { + return ( + + + + + {licence} + + + + + ); + } +} + +export default withTheme(LicenceScreen);