mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
PKG update
This commit is contained in:
2
app.json
2
app.json
@ -16,7 +16,7 @@
|
|||||||
"supportsTablet": true,
|
"supportsTablet": true,
|
||||||
"bundleIdentifier": "com.cally.app",
|
"bundleIdentifier": "com.cally.app",
|
||||||
"googleServicesFile": "./ios/GoogleService-Info.plist",
|
"googleServicesFile": "./ios/GoogleService-Info.plist",
|
||||||
"buildNumber": "62",
|
"buildNumber": "63",
|
||||||
"usesAppleSignIn": true
|
"usesAppleSignIn": true
|
||||||
},
|
},
|
||||||
"android": {
|
"android": {
|
||||||
|
|||||||
@ -1,29 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import {Drawer} from "expo-router/drawer";
|
import {Drawer} from "expo-router/drawer";
|
||||||
import {useSignOut} from "@/hooks/firebase/useSignOut";
|
import {useSignOut} from "@/hooks/firebase/useSignOut";
|
||||||
import {
|
import {DrawerContentScrollView,} from "@react-navigation/drawer";
|
||||||
DrawerContentScrollView,
|
import {Button, ButtonSize, Text, View} from "react-native-ui-lib";
|
||||||
DrawerItem,
|
|
||||||
DrawerItemList,
|
|
||||||
} from "@react-navigation/drawer";
|
|
||||||
import { Button, View, Text, ButtonSize } from "react-native-ui-lib";
|
|
||||||
import {ImageBackground, StyleSheet} from "react-native";
|
import {ImageBackground, StyleSheet} from "react-native";
|
||||||
import Feather from "@expo/vector-icons/Feather";
|
|
||||||
import DrawerButton from "@/components/shared/DrawerButton";
|
import DrawerButton from "@/components/shared/DrawerButton";
|
||||||
import {
|
|
||||||
AntDesign,
|
|
||||||
FontAwesome6,
|
|
||||||
MaterialCommunityIcons,
|
|
||||||
Octicons,
|
|
||||||
} from "@expo/vector-icons";
|
|
||||||
import MenuIcon from "@/assets/svgs/MenuIcon";
|
|
||||||
import { router } from "expo-router";
|
|
||||||
import NavGroceryIcon from "@/assets/svgs/NavGroceryIcon";
|
import NavGroceryIcon from "@/assets/svgs/NavGroceryIcon";
|
||||||
import NavToDosIcon from "@/assets/svgs/NavToDosIcon";
|
import NavToDosIcon from "@/assets/svgs/NavToDosIcon";
|
||||||
import NavBrainDumpIcon from "@/assets/svgs/NavBrainDumpIcon";
|
import NavBrainDumpIcon from "@/assets/svgs/NavBrainDumpIcon";
|
||||||
import NavCalendarIcon from "@/assets/svgs/NavCalendarIcon";
|
import NavCalendarIcon from "@/assets/svgs/NavCalendarIcon";
|
||||||
import NavSettingsIcon from "@/assets/svgs/NavSettingsIcon";
|
import NavSettingsIcon from "@/assets/svgs/NavSettingsIcon";
|
||||||
import { useAtom, useSetAtom } from "jotai";
|
import {useSetAtom} from "jotai";
|
||||||
import {
|
import {
|
||||||
isFamilyViewAtom,
|
isFamilyViewAtom,
|
||||||
settingsPageIndex,
|
settingsPageIndex,
|
||||||
@ -68,7 +55,7 @@ export default function TabLayout() {
|
|||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
flexDirection: "row",
|
flexDirection: "row",
|
||||||
paddingHorizontal: 30,
|
paddingHorizontal: 30
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<View style={{flex: 1, paddingRight: 5}}>
|
<View style={{flex: 1, paddingRight: 5}}>
|
||||||
@ -139,7 +126,6 @@ export default function TabLayout() {
|
|||||||
}}
|
}}
|
||||||
icon={<NavBrainDumpIcon/>}
|
icon={<NavBrainDumpIcon/>}
|
||||||
/>
|
/>
|
||||||
{/*<DrawerItem label="Logout" onPress={() => signOut()} />*/}
|
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<Button
|
<Button
|
||||||
@ -169,17 +155,16 @@ export default function TabLayout() {
|
|||||||
color="#464039"
|
color="#464039"
|
||||||
paddingV-30
|
paddingV-30
|
||||||
marginH-30
|
marginH-30
|
||||||
marginB-10
|
|
||||||
borderRadius={18.55}
|
borderRadius={18.55}
|
||||||
style={{elevation: 0}}
|
style={{elevation: 0}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
size={ButtonSize.large}
|
size={ButtonSize.large}
|
||||||
marginH-30
|
marginH-10
|
||||||
paddingV-15
|
paddingV-15
|
||||||
style={{
|
style={{
|
||||||
marginTop: "42%",
|
marginTop: 50,
|
||||||
backgroundColor: "transparent",
|
backgroundColor: "transparent",
|
||||||
borderWidth: 1.3,
|
borderWidth: 1.3,
|
||||||
borderColor: "#fd1775",
|
borderColor: "#fd1775",
|
||||||
|
|||||||
Reference in New Issue
Block a user