Commit d87b0cab by tungnq

TODO: Bổ sung màn qr code

parent b455960d
import React from 'react';
import {Text, View, StyleSheet} from 'react-native';
import QrCodeView from './view';
const QrCode = (props) => {
return (
<QrCodeView />
);
};
export default QrCode;
import { StyleSheet, Text, View } from 'react-native'
const styles = StyleSheet.create({})
export default styles
\ No newline at end of file
import React from 'react';
import {Text, View, TouchableOpacity, StyleSheet} from 'react-native';
const QrCodeView = (props) => {
const { } = props;
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<TouchableOpacity>
<Text>QrCode</Text>
</TouchableOpacity>
</View>
);
};
export default QrCodeView;
const styles = StyleSheet.create({})
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment