[go: nahoru, domu]

Skip to content

Commit

Permalink
Some minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklavsM committed Jul 18, 2021
1 parent 77532eb commit 087c562
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/navigation/DashboardStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const DashboardStack = () => {
<Stack.Screen name="Books" component={BooksScreen} options={StackScreenOptions}/>
<Stack.Screen name="Book" component={BookScreen} options={StackScreenOptions}/>
<Stack.Screen name="Add Question" component={AddQuestionScreen} options={StackScreenOptions}/>
<Stack.Screen name="AfterQuizAnimation" component={AfterQuizAnimation} options={StackScreenOptions}/>
<Stack.Screen name="AfterQuizAnimation" component={AfterQuizAnimation} options={{...StackScreenOptions, headerShown:false}} />
</Stack.Navigator>
)
}
Expand Down
2 changes: 1 addition & 1 deletion client/screens/AfterQuizAnimation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { NavigationInjectedProps } from 'react-navigation';
const AfterQuizAnimation = ({navigation}: NavigationInjectedProps) => {

return (
<View style={{paddingTop: 90, padding: 50, justifyContent: 'center', alignItems: 'center', backgroundColor:'white'}}>
<View style={{paddingTop: 90, padding: 50, justifyContent: 'center', alignItems: 'center', backgroundColor:'white', flex:1}}>
<Text style={{fontSize: 30}}>WoW you're so smart</Text>
<Text style={{fontSize: 25, paddingBottom: 20}}>keep going!</Text>
<Image style={{width: 330, height: 330}}
Expand Down

0 comments on commit 087c562

Please sign in to comment.