-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into onboarding-hifis
- Loading branch information
Showing
64 changed files
with
2,590 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ expo-debug.log | |
/.expo-shared | ||
.env | ||
.DS_Store | ||
/Lib/* | ||
|
||
# Go | ||
*.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
root: true, | ||
extends: ['@react-native-community', 'plugin:prettier/recommended'], | ||
plugins: ['prettier', 'jest'], | ||
rules: { | ||
'prettier/prettier': 'error', | ||
'react/react-in-jsx-scope': 'off' | ||
}, | ||
env: { | ||
'jest/globals': true | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Frontend Installs & Learning References | ||
|
||
|
||
### Installations | ||
[Installing Node](https://nodejs.org/en/download/) | ||
|
||
[Installing the React Native Development Environment](https://reactnative.dev/docs/environment-setup) | ||
|
||
|
||
|
||
### Learning References | ||
|
||
#### React Native | ||
[React Native Documentation](https://github.com/reactnative.dev/docs/getting-started) | ||
|
||
[React Native in Action (book)](https://learning.oreilly.com/library/view/react-native-in/9781617294051/) | ||
|
||
[Professional React Native](https://learning.oreilly.com/library/view/professional-react-native/9781800563681/) | ||
|
||
#### TypeScript | ||
[TypeScript Documentation](https://www.typescriptlang.org/docs/) | ||
|
||
[TypeScript Handbook](https://www.typescriptlang.org/docs/handbook/intro.html) | ||
|
||
[Learning TypeScript (book)](https://learning.oreilly.com/library/view/learning-typescript/9781098110321/) | ||
|
||
[Programming TypeScript (book)](https://learning.oreilly.com/library/view/programming-typescript/9781492037644/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
module.exports = function(api) { | ||
module.exports = function (api) { | ||
api.cache(true); | ||
return { | ||
presets: ['babel-preset-expo'], | ||
plugins: [ | ||
[ | ||
'module-resolver', | ||
{ | ||
root: ['./src'], | ||
alias: { | ||
'@/components': './src/components', | ||
'@/screens': './src/screens', | ||
'@/utils': './src/utils', | ||
'@/assets': './src/assets', | ||
'@/interfaces': './src/interfaces', | ||
'@/contexts': './src/contexts', | ||
'@/services': './src/services', | ||
'@/navigation': './src/navigation' | ||
} | ||
} | ||
] | ||
] | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Text, View } from "native-base"; | ||
import { | ||
widthPercentageToDP as w, | ||
heightPercentageToDP as h, | ||
} from "react-native-responsive-screen"; | ||
import React from "react"; | ||
|
||
export default function CompaniesFooter() { | ||
return ( | ||
<> | ||
<View | ||
width={w("80%")} | ||
flexDirection={"row"} | ||
justifyContent={"space-between"} | ||
alignItems={"center"} | ||
paddingBottom={h("1.5%")} | ||
> | ||
<Text fontSize={12}>Company 1</Text> | ||
<Text fontSize={12}>Company 2</Text> | ||
<Text fontSize={12}>Company 3</Text> | ||
</View> | ||
<View justifyContent={"space-between"} alignItems={"center"}> | ||
<Text fontWeight={"bold"} fontSize={12}> | ||
See why these companies are partnered with Legacy | ||
</Text> | ||
</View> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Button, Text } from "native-base"; | ||
import React from "react"; | ||
|
||
type SquareButtonProps = { | ||
title: string; | ||
onClick?: (input) => any; | ||
}; | ||
|
||
export default function SquareButton(props: SquareButtonProps) { | ||
return ( | ||
<Button | ||
backgroundColor={"#D9D9D9"} | ||
borderRadius={7} | ||
size={"xs"} | ||
onPress={props.onClick} | ||
> | ||
<Text color={"#000000"} fontWeight={"bold"}> | ||
{" "} | ||
{props.title}{" "} | ||
</Text> | ||
</Button> | ||
); | ||
} |
Oops, something went wrong.