adds stats button on home screen, and creates stats screen, length still needs to be calculated

This commit is contained in:
tina
2018-08-01 17:20:13 +02:00
parent f5b3716191
commit 897e99e6af
4 changed files with 52 additions and 2 deletions
+3 -1
View File
@@ -5,6 +5,7 @@ import Calendar from './components/calendar'
import CycleDay from './components/cycle-day'
import Chart from './components/chart/chart'
import Settings from './components/settings'
import Stats from './components/stats'
// this is until react native fixes this bugg, see
// https://github.com/facebook/react-native/issues/18868#issuecomment-382671739
@@ -16,5 +17,6 @@ export default createStackNavigator({
calendar: { screen: Calendar },
cycleDay: { screen: CycleDay },
chart: { screen: Chart },
settings: { screen: Settings }
settings: { screen: Settings },
stats: { screen: Stats}
})