Add basic progress & LMS upload.
This commit is contained in:
@@ -14,16 +14,16 @@ function JobsStack() {
|
||||
<Stack.Screen
|
||||
name="index"
|
||||
options={{
|
||||
title: "Search",
|
||||
headerSearchBarOptions: {
|
||||
placement: "automatic",
|
||||
placeholder: "Search",
|
||||
onChangeText: (event) => {
|
||||
router.setParams({
|
||||
search: event?.nativeEvent?.text,
|
||||
});
|
||||
},
|
||||
},
|
||||
headerShown: false,
|
||||
// headerSearchBarOptions: {
|
||||
// placement: "automatic",
|
||||
// placeholder: "Search",
|
||||
// onChangeText: (event) => {
|
||||
// router.setParams({
|
||||
// search: event?.nativeEvent?.text,
|
||||
// });
|
||||
// },
|
||||
// },
|
||||
}}
|
||||
/>
|
||||
<Stack.Screen
|
||||
|
||||
@@ -1,9 +1,22 @@
|
||||
import SignOutButton from "@/components-old/sign-out-button/sign-out-button.component";
|
||||
import { selectBodyshop } from "@/redux/user/user.selectors";
|
||||
import { StyleSheet, Text, View } from "react-native";
|
||||
export default function Tab() {
|
||||
import { connect } from "react-redux";
|
||||
import { createStructuredSelector } from "reselect";
|
||||
|
||||
const mapStateToProps = createStructuredSelector({
|
||||
bodyshop: selectBodyshop,
|
||||
});
|
||||
|
||||
export default connect(mapStateToProps, null)(Tab);
|
||||
|
||||
function Tab({ bodyshop }) {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text>Tab [Home|Settings]</Text>
|
||||
<Text>
|
||||
Using Local Media Server? {bodyshop?.uselocalmediaserver ? "Yes" : "No"}
|
||||
</Text>
|
||||
<SignOutButton />
|
||||
</View>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user