Commit e68772c1 by tungnq

TODO: Đã dựng khung màn hình các trạng thái của tạo mới văn bản đi

parent 7fa12700
import { StyleSheet, Text, View } from 'react-native'
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: R.colors.white,
},
body: {
flex: 1,
backgroundColor: R.colors.white,
},
})
export default styles
export default styles
\ No newline at end of file
import React from 'react';
import {Text, View, TouchableOpacity, StyleSheet} from 'react-native';
const StatusScreenSendDocumentView = (props) => {
const AwaitingApprovalView = (props) => {
const { } = props;
return (
<View
......@@ -11,12 +11,12 @@ const StatusScreenSendDocumentView = (props) => {
alignItems: 'center',
}}>
<TouchableOpacity>
<Text>StatusScreenSendDocument</Text>
<Text>AwaitingApproval</Text>
</TouchableOpacity>
</View>
);
};
export default StatusScreenSendDocumentView;
export default AwaitingApprovalView;
const styles = StyleSheet.create({})
\ No newline at end of file
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 DraftView = (props) => {
const { } = props;
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<TouchableOpacity>
<Text>Draft</Text>
</TouchableOpacity>
</View>
);
};
export default DraftView;
const styles = StyleSheet.create({})
\ No newline at end of file
import React from 'react';
import {Text, View, StyleSheet} from 'react-native';
import StatusScreenSendDocumentView from './view';
import StatusScreenView from './view';
const StatusScreenSendDocument = (props) => {
const StatusScreen = (props) => {
return (
<StatusScreenSendDocumentView />
<StatusScreenView />
);
};
export default StatusScreenSendDocument;
export default StatusScreen;
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