ordering-ui-react-native 0.21.42-test → 0.21.43-test

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ordering-ui-react-native",
3
- "version": "0.21.42-test",
3
+ "version": "0.21.43-test",
4
4
  "description": "Reusable components made in react native",
5
5
  "main": "src/index.tsx",
6
6
  "author": "ordering.inc",
@@ -6,8 +6,6 @@ import {
6
6
  FlatList,
7
7
  } from 'react-native';
8
8
 
9
- import CheckBox from '@react-native-community/checkbox';
10
-
11
9
  import {
12
10
  InterfaceType,
13
11
  StarDeviceDiscoveryManager,
@@ -83,30 +81,7 @@ export const SearchStarPrinter = ({ navigation }: any) => {
83
81
  style={{ maxWidth: 40, justifyContent: 'flex-end' }}
84
82
  onClick={() => handleArrowBack()}
85
83
  />
86
- <View
87
- style={{ width: 100, marginTop: 30 }}>
88
- <Text style={{ marginLeft: 20 }}>Bluetooth</Text>
89
- </View>
90
-
91
- <View style={{ flexDirection: 'row' }}>
92
- <CheckBox
93
- style={{ marginLeft: 20 }}
94
- value={state.bluetoothLeIsEnabled}
95
- onValueChange={(newValue) => {
96
- setState({ bluetoothLeIsEnabled: newValue });
97
- }}
98
- />
99
- <Text style={{ marginLeft: 20 }}>Bluetooth LE</Text>
100
- </View>
101
-
102
84
  <View style={{ flexDirection: 'row' }}>
103
- <CheckBox
104
- style={{ marginLeft: 20 }}
105
- value={state.usbIsEnabled}
106
- onValueChange={(newValue) => {
107
- setState({ usbIsEnabled: newValue });
108
- }}
109
- />
110
85
  <Button
111
86
  title="Discovery"
112
87
  onPress={_onPressDiscoveryButton}