Skip to content

Commit

Permalink
updated app version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Missing-Texture committed Nov 2, 2021
1 parent 0bdbd8d commit 4bddc3f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "WttrApp",
"slug": "WttrApp",
"version": "1.2.3",
"version": "1.3.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
Expand All @@ -18,12 +18,12 @@
],
"ios": {
"bundleIdentifier": "in.wttr.app",
"buildNumber": "1.2.3",
"buildNumber": "1.3.0",
"supportsTablet": true
},
"android": {
"package": "in.wttr.app",
"versionCode": 10203,
"versionCode": 10300,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
Expand Down
21 changes: 10 additions & 11 deletions src/AstronomyFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Box, Text, HStack, Center } from 'native-base'
import moment from 'moment'

import { IData } from './Interfaces'
import { right } from 'styled-system'


export default function AstronomyFooter(
Expand All @@ -12,17 +11,17 @@ export default function AstronomyFooter(
) {
return(
<>
<HStack pt={10} justifyContent="space-evenly">
<HStack>
<Text pr={3} fontSize={'lg'} color="blueGray.300">Sunrise:</Text>
<Text fontSize={'lg'} color="blueGray.300" fontWeight="bold">{convertToTime24(data.sunrise)}</Text>
</HStack>

<HStack>
<Text pr={3} fontSize={'lg'} color="blueGray.300">Sunset:</Text>
<Text fontSize={'lg'} color="blueGray.300" fontWeight="bold">{convertToTime24(data.sunset)}</Text>
</HStack>
<HStack pt={10} justifyContent="space-evenly">
<HStack>
<Text pr={3} fontSize={'lg'} color="blueGray.300">Sunrise:</Text>
<Text fontSize={'lg'} color="blueGray.300" fontWeight="bold">{convertToTime24(data.sunrise)}</Text>
</HStack>

<HStack>
<Text pr={3} fontSize={'lg'} color="blueGray.300">Sunset:</Text>
<Text fontSize={'lg'} color="blueGray.300" fontWeight="bold">{convertToTime24(data.sunset)}</Text>
</HStack>
</HStack>
</>
)
}
Expand Down

0 comments on commit 4bddc3f

Please sign in to comment.