import React from 'react'; import {SafeAreaView, ScrollView, Text} from 'react-native'; import SVG from './assets/ruby.svg'; import Description from './components/Description'; import QRCode from 'react-native-qrcode-svg'; import styles from './styles'; const rubyUrl = 'https://www.ruby-lang.org/'; const googleUrl = 'https://www.google.com/'; const qrCodeSize = 200; const logoSize = 100; const defaultQRCode = ( ); const colorfulQRCODe = ( ); const urlPngQRCode = ( ); const localPngQRCode = ( ); const localPngBackgroundColorQRCode = ( ); const urlSvgQRCode = ( ); const xml = ` `; const stringSvgQRCode = ( ); const localSvgQRCode = ( ); const App = () => { return ( Example usages of QRCode component {defaultQRCode} {colorfulQRCODe} {urlPngQRCode} {localPngQRCode} {localPngBackgroundColorQRCode} {urlSvgQRCode} {stringSvgQRCode} {localSvgQRCode} ); }; export default App;