From 8196fb7123126b8b4111f77a70f1109fbaad65a4 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Mon, 19 Jul 2021 01:46:36 +0200 Subject: added graph button --- app/screens/graph/graph-screen.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'app/screens/graph') diff --git a/app/screens/graph/graph-screen.tsx b/app/screens/graph/graph-screen.tsx index f537128..c578fd4 100644 --- a/app/screens/graph/graph-screen.tsx +++ b/app/screens/graph/graph-screen.tsx @@ -1,6 +1,6 @@ import React, { useEffect, useState } from "react" import { observer } from "mobx-react-lite" -import { TouchableOpacity, ViewStyle } from "react-native" +import { TouchableOpacity, View, ViewStyle } from "react-native" import { Screen, Text } from "../../components" // import { useNavigation } from "@react-navigation/native" // import { useStores } from "../../models" @@ -22,6 +22,8 @@ const ROOT: ViewStyle = { flex: 1, } +import { LocalButton } from "../../components/" +import { GraphUi } from "../../components/graph-ui/graph-ui" export const GraphScreen = observer(function GraphScreen() { // Pull in one of our MST stores // const { someStore, anotherStore } = useStores() @@ -169,9 +171,14 @@ export const GraphScreen = observer(function GraphScreen() { return null } else { return ( - + + - + + + ) } -- cgit v1.2.3