Skip to content

Commit

Permalink
Added author to the info screen
Browse files Browse the repository at this point in the history
novaisea committed Apr 8, 2021
1 parent 7cb8a66 commit 486b215
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -28,6 +28,6 @@
"web": {
"favicon": "./assets/favicon.png"
},
"description": "Final Apps"
"description": ""
}
}
7 changes: 5 additions & 2 deletions components/AboutScreen.js
Original file line number Diff line number Diff line change
@@ -10,8 +10,8 @@ export default class Aboutscreen extends Component {
<Header
backgroundColor ="none"
placement="center"
centerComponent={{ text: 'Info', style: {fontSize: 18, fontWeight: "bold"} }}/>
<View style={{ justifyContent: 'flex-start'}}>
centerComponent={{ text: "Info", style: {fontSize: 18, fontWeight: "bold"} }}/>
<View style={{ justifyContent: "flex-start"}}>
<Text>This is the React Native application that makes part of a research between native and React Native development, to understand the advantages and disavantages and performance of each. There are 3 repositores with a similar app (Swift, Kotlin and React Native). {"\n"}</Text>

<Text>Kotlin Repo -</Text><Text style ={{color: "blue"}} onPress={() => Linking.openURL('https://github.coventry.ac.uk/novaisea/KotlinApp-6001CEM.git')}>https://github.coventry.ac.uk/novaisea/SwiftApp-6001CEM.git {"\n"}</Text>
@@ -22,6 +22,9 @@ export default class Aboutscreen extends Component {
<View style={{justifyContent: "center"}}>
<Button title="Info about the app" onPress={ ()=>{ alert('This application uses buttons, images, labels, scrollViews and other basic functionalities for a comparison between native and React Native development as part of the final year dissertation.')}} />
</View>
<View style={{justifyContent: "flex-end", alignItems: "center"}}>
<Text>Author: Andre Emiliano</Text>
</View>

</View>
)

0 comments on commit 486b215

Please sign in to comment.