feat: implement filter state management and enhance order fetching in BarcodeScreen

This commit is contained in:
2025-06-12 22:32:10 +03:00
parent 43ddf76827
commit 2d5d04987b
23 changed files with 245 additions and 290 deletions

View File

@@ -0,0 +1,19 @@
import {View} from "react-native";
import {RadioButton} from "react-native-paper";
import DText from "../../DText/DText";
import {FC} from "react";
type Props = {
value: string;
label: string;
}
const SortingButton: FC<Props> = ({value, label}) => {
return (<View style={{display: "flex", flexDirection: "row", alignItems: "center"}}>
<RadioButton value={value}/>
<DText>{label}</DText>
</View>
)
}
export default SortingButton;