2020-08-28 14:17:37 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import { View, SafeAreaView, ScrollView } from 'react-native';
|
2020-07-26 14:45:32 +02:00
|
|
|
import { Header } from 'components/Typography';
|
|
|
|
|
import { colors } from 'components/Colors';
|
2020-08-28 14:17:37 +02:00
|
|
|
import Library from './components/Library';
|
|
|
|
|
import Cache from './components/Cache';
|
2020-06-16 23:11:05 +02:00
|
|
|
|
|
|
|
|
export default function Settings() {
|
|
|
|
|
return (
|
|
|
|
|
<ScrollView>
|
|
|
|
|
<SafeAreaView>
|
|
|
|
|
<View style={{ padding: 20 }}>
|
2020-07-26 14:45:32 +02:00
|
|
|
<Header style={colors.text}>Settings</Header>
|
2020-08-28 14:17:37 +02:00
|
|
|
<Library />
|
|
|
|
|
<Cache />
|
2020-06-16 23:11:05 +02:00
|
|
|
</View>
|
|
|
|
|
</SafeAreaView>
|
|
|
|
|
</ScrollView>
|
|
|
|
|
);
|
|
|
|
|
}
|