There was an error while loading. Please reload this page.
1 parent abb29bb commit 81310c7Copy full SHA for 81310c7
1 file changed
src/components/HelpSection/HelpSection.tsx
@@ -12,6 +12,7 @@ import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
12
import { useTranslation } from 'react-i18next';
13
import { useTheme } from '../../hooks';
14
import BlurOverlay from '../../BlurOverlay';
15
+import packageJson from '../../../package.json';
16
17
const HelpSection = (props: {
18
actionStatus: (status: boolean) => void;
@@ -126,6 +127,14 @@ const HelpSection = (props: {
126
127
}
128
/>
129
</TouchableOpacity>
130
+ <Text
131
+ style={[
132
+ Fonts.textTiny,
133
+ Fonts.textCenter
134
+ ]}
135
+ >
136
+ v{packageJson.version}
137
+ </Text>
138
</View>
139
<View style={[Layout.justifyContentEnd]}>
140
<TouchableOpacity
0 commit comments