import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; import { useTheme } from '@react-navigation/native'; import navigationStyle from '../../components/navigationStyle'; import { SafeBlueArea, BlueCard, BlueText } from '../../BlueComponents'; import loc from '../../loc'; const ReleaseNotes = () => { const notes = require('../../release-notes'); const { colors } = useTheme(); const styles = StyleSheet.create({ root: { flex: 1, backgroundColor: colors.background, }, }); return ( {notes} ); }; ReleaseNotes.navigationOptions = navigationStyle({ title: loc.settings.about_release_notes, }); export default ReleaseNotes;