cullub
cullub
I can work around this by using the `rememberReorderableLazyListState` `onMove` function in conjunction with the `draggableHandle` `onDragStopped` function, but it would be nicer to have a single function that was...
I hope it's fine that I'm submitting all these issues, I figured since V2 is prerelease you might like some feedback. In the docs for the `characteristic.subscribe()` suspend function, it...
```kt characteristic.setNotifying(true) Log.v(TAG, "actual notifying: ${characteristic.isNotifying}") ``` In my logs I see: ``` BluetoothGatt setCharacteristicNotification() - uuid: 193f0011-71f3-452c-851c-5fb39856b2e1 enable: true MyClass actual notifying: false ``` Even adding a 2 second...
I'd like to do something like the following in version 2.0 of this library: ```kt centralManager .scan( timeout = 1250.milliseconds, filter = { ManufacturerData(companyId = 1234) } ) ``` However,...