package io.rebble.libpebblecommon.io.rebble.libpebblecommon.contacts import androidx.compose.ui.graphics.ImageBitmap import io.rebble.libpebblecommon.contacts.SystemContact import io.rebble.libpebblecommon.contacts.SystemContacts import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.flow class IosSystemContacts : SystemContacts { override fun registerForContactsChanges(): Flow { return flow { } } override suspend fun getContacts(): List { return emptyList() } override fun hasPermission(): Boolean { return false } override suspend fun getContactImage(lookupKey: String): ImageBitmap? { return null } }