function ReloadButton()

in src/bluetooth/Bluetooth.tsx [296:311]


function ReloadButton() {
  const {colors} = useTheme();
  return (
    <View>
      <Icon
        style={styles.marginEnd10}
        name="reload"
        type={Platform.select({ios: 'ionicon', android: 'material-community'})}
        color={colors.text}
        onPress={() => {
          IotcBleManager.getInstance().resetDeviceList();
        }}
      />
    </View>
  );
}