Base dark theme implementation
This commit is contained in:
@@ -3,14 +3,8 @@ import { useQuery } from "@apollo/client";
|
||||
import { useLocalSearchParams } from "expo-router";
|
||||
import React from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import {
|
||||
RefreshControl,
|
||||
ScrollView,
|
||||
StyleSheet,
|
||||
Text,
|
||||
View,
|
||||
} from "react-native";
|
||||
import { ActivityIndicator, Card, useTheme } from "react-native-paper";
|
||||
import { RefreshControl, ScrollView, StyleSheet, View } from "react-native";
|
||||
import { ActivityIndicator, Card, Text, useTheme } from "react-native-paper";
|
||||
import DataLabelComponent from "../data-label/data-label";
|
||||
|
||||
export default function JobTombstone() {
|
||||
@@ -82,14 +76,9 @@ export default function JobTombstone() {
|
||||
/>
|
||||
<DataLabelComponent
|
||||
label={t("objects.jobs.fields.vehicle")}
|
||||
content={
|
||||
<View>
|
||||
<Text>{`${job.v_model_yr || ""} ${job.v_make_desc || ""} ${
|
||||
job.v_model_desc || ""
|
||||
}`}</Text>
|
||||
<Text>{job.v_vin}</Text>
|
||||
</View>
|
||||
}
|
||||
content={`${job.v_model_yr || ""} ${job.v_make_desc || ""} ${
|
||||
job.v_model_desc || ""
|
||||
} - ${job.v_vin}`}
|
||||
/>
|
||||
</View>
|
||||
<View style={localStyles.twoColumnCardColumn}>
|
||||
|
||||
Reference in New Issue
Block a user