Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

created offline screen #42

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
161 changes: 59 additions & 102 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"prettier:fix": "npx prettier --write ."
},
"dependencies": {
"@expo/webpack-config": "^0.17.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.4",
Expand All @@ -26,18 +27,17 @@
"firebase": "^9.17.2",
"i18next": "^22.4.10",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "^12.1.5",
"react-native": "0.70.5",
"react-native": "0.70.8",
"react-native-dotenv": "^3.4.7",
"react-native-gesture-handler": "~2.8.0",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-navigation": "^4.4.4",
"react-native-web": "~0.18.9",
"react-dom": "18.1.0",
"@expo/webpack-config": "^0.17.2"
"react-navigation": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down
3 changes: 2 additions & 1 deletion src/screens/AudioScreen/Audio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function AudioScreen({ navigation }: RootStackScreenProps<'Audio'>) {
backgroundColor: Colors.surfaceGrey,
borderRadius: 10,
padding: '3%',
marginBottom: '5%',
marginBottom: '7%',
}}
/>
<Text
Expand Down Expand Up @@ -47,6 +47,7 @@ function AudioScreen({ navigation }: RootStackScreenProps<'Audio'>) {
<AudioCard
name="An Interview with Preston Hardison on the Convention on Biodiversity"
author="Preson Hardison"
// onPress={() => navigation.navigate('SearchOff')}
/>
<AudioCard
name="Mrinalini Rai on the Convention on Biodiversity and Gender Rights "
Expand Down
Loading