This commit is contained in:
2024-02-08 09:10:53 -05:00
commit 91767b9d67
37 changed files with 37612 additions and 0 deletions

17
components/Create.js Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import { HeaderButton } from 'react-navigation-header-buttons';
import { Ionicons } from '@expo/vector-icons';
import { Platform } from 'react-native';
const CreateSwitButton = (props) => {
return (
<HeaderButton
{...props}
IconComponent={Ionicons}
iconSize={23}
color={Platform.OS === 'android' ? 'white' : 'blue'}
/>
);
};
export default CreateSwitButton;