Flavio Suardi
10/06/2025, 2:41 PMinterface IBleService {
     val connectionState: Flow<ConnectionState>
     fun scan(): Flow<Device>
}
When implementing this interface in the iOS project, there’s currently no way to create a SkieSwiftStateFlow (or similar) that can be returned from the connectionState property and the scan() function.
Just like on Android, it would be great to have a mechanism to create flows, something like flow {} or channelFlow {} , or even a proper constructor to instantiate them directly.
The question is essentially related to this discussion: https://github.com/touchlab/SKIE/discussions/54, which unfortunately has not been followed up.
Thank you.streetsofboston
10/06/2025, 2:45 PMFlavio Suardi
10/06/2025, 4:44 PM