Add AddItem page base

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-10 10:25:38 +03:00
parent ab6aa76fa2
commit f64588b17c
9 changed files with 888 additions and 129 deletions

14
src/screens/addItem.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react';
import { Text } from 'react-native-paper';
import { PaddedView } from '../components';
const AddItem = () => {
return (
<PaddedView centered>
<Text>Add Item</Text>
</PaddedView>
);
};
export default AddItem;

View File

@@ -1,3 +1,4 @@
export { default as AddItem } from './addItem';
export { default as Home } from './home';
export { default as Search } from './search';
export { default as Tags } from './tags';