Files
lst_v3/lstMobile/src/app/scanner.tsx
blake 82f8369640
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m33s
refactor(scanner): more basic work to get the scanner just running
2026-04-19 17:20:57 -05:00

33 lines
615 B
TypeScript

import React from "react";
import { Text, View } from "react-native";
export default function scanner() {
return (
<View
style={{
flex: 1,
//justifyContent: "center",
alignItems: "center",
marginTop: 50,
}}
>
<View style={{ alignItems: "center", margin: 10 }}>
<Text style={{ fontSize: 20, fontWeight: "600" }}>LST Scanner</Text>
</View>
<View
style={{
marginTop: 50,
alignItems: "center",
}}
>
<Text>Relocate</Text>
<Text>0 / 4</Text>
</View>
{/* <View>
<Text>List of recent scanned pallets TBA</Text>
</View> */}
</View>
);
}