diff --git a/app/components/AboutModal.js b/app/components/AboutModal.js index 3002313..e160afb 100644 --- a/app/components/AboutModal.js +++ b/app/components/AboutModal.js @@ -1,38 +1,38 @@ import React from 'react'; import { Text, Linking } from 'react-native'; import PropTypes from 'prop-types'; import { Dialog, Portal, Surface, Title } from 'react-native-paper'; import KeyboardAwareDialog from './KeyBoardAwareDialog'; import VersionNumber from 'react-native-version-number'; const DialogType = Platform.OS === 'ios' ? KeyboardAwareDialog : Dialog; import styles from '../assets/styles/blink/_AboutModal.scss'; function handleLink(event) { Linking.openURL('https://ag-projects.com'); } const AboutModal = (props) => { return ( About Sylk Sylk is part of Sylk Suite, a set of real-time - communications applications using IETF SIP protocol and WebRTC specifications. + communications applications using IETF SIP protocol and WebRTC specifications Version {VersionNumber.appVersion} handleLink()} style={styles.link}>Copyright © AG Projects ); } AboutModal.propTypes = { show: PropTypes.bool.isRequired, close: PropTypes.func.isRequired }; export default AboutModal;