feat: add extra metadata to the album view

This commit is contained in:
Lei Nelissen
2023-04-23 01:04:30 +02:00
parent c3c32ae565
commit dba87247d8
15 changed files with 135 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
import { Text } from 'components/Typography';
import { Paragraph, Text } from 'components/Typography';
import React, { useEffect, useState } from 'react';
import { Switch } from 'react-native-gesture-handler';
@@ -92,7 +92,7 @@ function renderHeader(question: Question, index: number, isActive: boolean) {
function renderContent(question: Question) {
return (
<ContentContainer>
<Text>{question.content}</Text>
<Paragraph>{question.content}</Paragraph>
</ContentContainer>
);
}
@@ -112,9 +112,9 @@ export default function Sentry() {
return (
<ScrollView contentInset={{ top: headerHeight }}>
<Container>
<Text>{t('error-reporting-description')}</Text>
<Text />
<Text>{t('error-reporting-rationale')}</Text>
<Paragraph>{t('error-reporting-description')}</Paragraph>
<Paragraph />
<Paragraph>{t('error-reporting-rationale')}</Paragraph>
<SwitchContainer>
<Label>{t('error-reporting')}</Label>