Remove time tickets from bottom tab navigation, and update version for production deployment.

This commit is contained in:
Patrick Fic
2023-08-16 12:48:54 -07:00
parent a3500af72d
commit 1311b0f8e7
6 changed files with 1086 additions and 380 deletions

View File

@@ -2,7 +2,7 @@ import { useQuery } from "@apollo/client";
import { Ionicons } from "@expo/vector-icons";
import React from "react";
import { useTranslation } from "react-i18next";
import { FlatList, RefreshControl, View } from "react-native";
import { FlatList, RefreshControl, KeyboardAvoidingView } from "react-native";
import { Button, List, Modal, Portal, Searchbar } from "react-native-paper";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
@@ -100,7 +100,7 @@ export function CameraSelectJob({
backgroundColor: "white",
}}
>
<View
<KeyboardAvoidingView
style={{
display: "flex",
flexDirection: "row",
@@ -116,7 +116,7 @@ export function CameraSelectJob({
onChangeText={onChangeSearch}
value={searchQuery}
/>
</View>
</KeyboardAvoidingView>
<FlatList
refreshControl={
<RefreshControl refreshing={loading} onRefresh={onRefresh} />