Browse Source

Date string footer

pull/8/head
Tim Glasgow 2 years ago
parent
commit
3a932bcdc5
  1. 4
      squarenotsquare/src/screens/Home.js

4
squarenotsquare/src/screens/Home.js

@ -20,6 +20,8 @@ function Home(){
dispatch(squareStartPressed());
}
const now = new Date(Date.now());
return (
<SafeAreaView style={[styles.flex]}>
<TouchableOpacity style={[styles.endAlign]}>
@ -61,7 +63,7 @@ function Home(){
</View>
<View style={[styles.footer, styles.centeredJustify]}>
<Text style={[styles.greyText, styles.tinyFont, styles.centeredText]}>
0.0.1a Atonal Software August 2, 2022
0.0.1a Atonal Software {now.toDateString()}
</Text>
</View>
</SafeAreaView>

Loading…
Cancel
Save