Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Project structure #20

Merged
merged 7 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions assets/colors/colors.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const white = 'white'
export const peach = '#FD9890'
Binary file modified assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file added components/InputField/styles.ts
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
File renamed without changes
10 changes: 10 additions & 0 deletions screens/Onboarding/OnboardingScreen.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { View, Text } from "react-native"
import { styles } from "./styles"

export const OnboardingScreen = () => {
return (
<View style={styles.container}>
<Text>This is the onboarding screen</Text>
</View>
)
}
9 changes: 9 additions & 0 deletions screens/Onboarding/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { StyleSheet } from "react-native"

export const styles = StyleSheet.create({
container: {
alignItems: 'center',
flex: 1,
justifyContent: 'center',
},
})
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.