-
Notifications
You must be signed in to change notification settings - Fork 0
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
165 export test data #193
165 export test data #193
Conversation
@@ -70,7 +70,7 @@ export default function App() { | |||
<Stack.Screen name="HomeScreen" component={Homescreen} options={{ gestureEnabled: false, headerBackVisible: false }} /> | |||
<Stack.Screen name="SettingsScreen" component={AccountSettings} /> | |||
<Stack.Screen name="GameScreen" component={GameScreenFlow} options={{ | |||
headerTitle: () => { return <Text style={{color:"#5eafdf", fontSize:20}}>Vocabulary Practice</Text> }, | |||
headerTitle: () => { return <Text style={{ color: "#5eafdf", fontSize: 20 }}>Vocabulary Practice</Text> }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just leaving a note here that we'll probably have to update the fonts in a few files. Left a note on #196 (the fonts PR) as well. We can merge this PR in first and then handle the conflicts/update fonts in that PR since we're waiting on updating the fonts in the tutorial pictures anyway.
Relevant files: App.tsx
, PrimaryButton.tsx
, and adminScreen.tsx
Got the below error for both
Status: email Error: The file does not exist. Given path: |
Placeholder version of consent copy text has been uploaded to production Firestore as well as emulator db. Consent screen is finished (apart from any styling we want to change and of course the copy text itself). Admin screen currently just has a text input and a save button to update the text stored in Firestore. Will finalize admin screen once PR #193 (export test data) is merged into dev.
Please wrap the admin screen a ScrollView :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…m Text (#205) * started adding consent screen doesn't really work rn tho * Finished Consent Screen Placeholder version of consent copy text has been uploaded to production Firestore as well as emulator db. Consent screen is finished (apart from any styling we want to change and of course the copy text itself). Admin screen currently just has a text input and a save button to update the text stored in Firestore. Will finalize admin screen once PR #193 (export test data) is merged into dev. * Added edit/save consent text capability on admin screen * Changed consent screen to title case * Moved consent screen out of screens dir temporarily * Moved ConsentScreen back into screens directory * Added automatic scroll to bottom of screen when keyboard is opened
Closes #165 . Redesigned admin screen and enabled export of test data.