From b3ff523e968909ca065e5f78da3a7ccd2c56d7d8 Mon Sep 17 00:00:00 2001 From: Melissa Liu Date: Sun, 8 Oct 2023 14:20:53 -0700 Subject: [PATCH] useless commit --- impact-fund/.gitignore | 41 - impact-fund/app.json | 35 - impact-fund/app/(tabs)/_layout.tsx | 56 - impact-fund/app/(tabs)/index.tsx | 35 - impact-fund/app/(tabs)/two.tsx | 35 - impact-fund/app/+html.tsx | 46 - impact-fund/app/[...missing].tsx | 40 - impact-fund/app/_layout.tsx | 60 - impact-fund/app/modal.tsx | 39 - .../assets/fonts/SpaceMono-Regular.ttf | Bin 93252 -> 0 bytes impact-fund/assets/images/adaptive-icon.png | Bin 17547 -> 0 bytes impact-fund/assets/images/favicon.png | Bin 1466 -> 0 bytes impact-fund/assets/images/icon.png | Bin 22380 -> 0 bytes impact-fund/assets/images/splash.png | Bin 47346 -> 0 bytes impact-fund/babel.config.js | 10 - impact-fund/components/EditScreenInfo.tsx | 82 - impact-fund/components/ExternalLink.tsx | 28 - impact-fund/components/StyledText.tsx | 5 - impact-fund/components/Themed.tsx | 51 - .../components/__tests__/StyledText-test.js | 10 - impact-fund/constants/Colors.ts | 19 - impact-fund/expo-env.d.ts | 3 + impact-fund/metro.config.js | 10 - impact-fund/package-lock.json | 17555 ---------------- impact-fund/package.json | 49 - impact-fund/tsconfig.json | 7 - package-lock.json | 1056 +- package.json | 2 +- src/app/(Authentication)/Welcome/index.tsx | 8 +- src/app/(Authentication)/Welcome/styles.ts | 33 +- .../Cases/QRCodeScanner/styles.ts | 29 +- src/components/styles.ts | 30 - 32 files changed, 772 insertions(+), 18602 deletions(-) delete mode 100644 impact-fund/.gitignore delete mode 100644 impact-fund/app.json delete mode 100644 impact-fund/app/(tabs)/_layout.tsx delete mode 100644 impact-fund/app/(tabs)/index.tsx delete mode 100644 impact-fund/app/(tabs)/two.tsx delete mode 100644 impact-fund/app/+html.tsx delete mode 100644 impact-fund/app/[...missing].tsx delete mode 100644 impact-fund/app/_layout.tsx delete mode 100644 impact-fund/app/modal.tsx delete mode 100644 impact-fund/assets/fonts/SpaceMono-Regular.ttf delete mode 100644 impact-fund/assets/images/adaptive-icon.png delete mode 100644 impact-fund/assets/images/favicon.png delete mode 100644 impact-fund/assets/images/icon.png delete mode 100644 impact-fund/assets/images/splash.png delete mode 100644 impact-fund/babel.config.js delete mode 100644 impact-fund/components/EditScreenInfo.tsx delete mode 100644 impact-fund/components/ExternalLink.tsx delete mode 100644 impact-fund/components/StyledText.tsx delete mode 100644 impact-fund/components/Themed.tsx delete mode 100644 impact-fund/components/__tests__/StyledText-test.js delete mode 100644 impact-fund/constants/Colors.ts create mode 100644 impact-fund/expo-env.d.ts delete mode 100644 impact-fund/metro.config.js delete mode 100644 impact-fund/package-lock.json delete mode 100644 impact-fund/package.json delete mode 100644 impact-fund/tsconfig.json delete mode 100644 src/components/styles.ts diff --git a/impact-fund/.gitignore b/impact-fund/.gitignore deleted file mode 100644 index 0b37b6eb..00000000 --- a/impact-fund/.gitignore +++ /dev/null @@ -1,41 +0,0 @@ -# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files - -# dependencies -node_modules/ - -# Expo -.expo/ -dist/ -web-build/ - -# Native -*.orig.* -*.jks -*.p8 -*.p12 -*.key -*.mobileprovision - -# Metro -.metro-health-check* - -# debug -npm-debug.* -yarn-debug.* -yarn-error.* - -# macOS -.DS_Store -*.pem - -# local env files -.env*.local - -# typescript -*.tsbuildinfo - -# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb -# The following patterns were generated by expo-cli - -expo-env.d.ts -# @end expo-cli \ No newline at end of file diff --git a/impact-fund/app.json b/impact-fund/app.json deleted file mode 100644 index e24be3e6..00000000 --- a/impact-fund/app.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "expo": { - "name": "impact-fund", - "slug": "impact-fund", - "version": "1.0.0", - "orientation": "portrait", - "icon": "./assets/images/icon.png", - "scheme": "myapp", - "userInterfaceStyle": "automatic", - "splash": { - "image": "./assets/images/splash.png", - "resizeMode": "contain", - "backgroundColor": "#ffffff" - }, - "assetBundlePatterns": ["**/*"], - "ios": { - "supportsTablet": true - }, - "android": { - "adaptiveIcon": { - "foregroundImage": "./assets/images/adaptive-icon.png", - "backgroundColor": "#ffffff" - } - }, - "web": { - "bundler": "metro", - "output": "static", - "favicon": "./assets/images/favicon.png" - }, - "plugins": ["expo-router"], - "experiments": { - "typedRoutes": true - } - } -} diff --git a/impact-fund/app/(tabs)/_layout.tsx b/impact-fund/app/(tabs)/_layout.tsx deleted file mode 100644 index 1d235a1c..00000000 --- a/impact-fund/app/(tabs)/_layout.tsx +++ /dev/null @@ -1,56 +0,0 @@ -import FontAwesome from '@expo/vector-icons/FontAwesome'; -import { Link, Tabs } from 'expo-router'; -import { Pressable, useColorScheme } from 'react-native'; - -import Colors from '../../constants/Colors'; - -/** - * You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/ - */ -function TabBarIcon(props: { - name: React.ComponentProps['name']; - color: string; -}) { - return ; -} - -export default function TabLayout() { - const colorScheme = useColorScheme(); - - return ( - - , - headerRight: () => ( - - - {({ pressed }) => ( - - )} - - - ), - }} - /> - , - }} - /> - - ); -} diff --git a/impact-fund/app/(tabs)/index.tsx b/impact-fund/app/(tabs)/index.tsx deleted file mode 100644 index 3a5bb5f6..00000000 --- a/impact-fund/app/(tabs)/index.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { StyleSheet } from 'react-native'; - -import EditScreenInfo from '../../components/EditScreenInfo'; -import { Text, View } from '../../components/Themed'; - -export default function TabOneScreen() { - return ( - - Tab One - - - - ); -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - alignItems: 'center', - justifyContent: 'center', - }, - title: { - fontSize: 20, - fontWeight: 'bold', - }, - separator: { - marginVertical: 30, - height: 1, - width: '80%', - }, -}); diff --git a/impact-fund/app/(tabs)/two.tsx b/impact-fund/app/(tabs)/two.tsx deleted file mode 100644 index cc6a3774..00000000 --- a/impact-fund/app/(tabs)/two.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { StyleSheet } from 'react-native'; - -import EditScreenInfo from '../../components/EditScreenInfo'; -import { Text, View } from '../../components/Themed'; - -export default function TabTwoScreen() { - return ( - - Tab Two - - - - ); -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - alignItems: 'center', - justifyContent: 'center', - }, - title: { - fontSize: 20, - fontWeight: 'bold', - }, - separator: { - marginVertical: 30, - height: 1, - width: '80%', - }, -}); diff --git a/impact-fund/app/+html.tsx b/impact-fund/app/+html.tsx deleted file mode 100644 index 25524d77..00000000 --- a/impact-fund/app/+html.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { ScrollViewStyleReset } from 'expo-router/html'; - -// This file is web-only and used to configure the root HTML for every -// web page during static rendering. -// The contents of this function only run in Node.js environments and -// do not have access to the DOM or browser APIs. -export default function Root({ children }: { children: React.ReactNode }) { - return ( - - - - - - {/* - This viewport disables scaling which makes the mobile website act more like a native app. - However this does reduce built-in accessibility. If you want to enable scaling, use this instead: - - */} - - {/* - Disable body scrolling on web. This makes ScrollView components work closer to how they do on native. - However, body scrolling is often nice to have for mobile web. If you want to enable it, remove this line. - */} - - - {/* Using raw CSS styles as an escape-hatch to ensure the background color never flickers in dark-mode. */} -