commonMain.me.saket.telephoto.zoomable.internal.haptics.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoomable-desktop Show documentation
Show all versions of zoomable-desktop Show documentation
A Modifier for making anything zoomable.
The newest version!
package me.saket.telephoto.zoomable.internal
import androidx.compose.ui.hapticfeedback.HapticFeedback
import androidx.compose.ui.node.CompositionLocalConsumerModifierNode
internal expect fun CompositionLocalConsumerModifierNode.hapticFeedbackPerformer(): HapticFeedbackPerformer
/**
* Alternative to [HapticFeedback] until it
* [supports all possible feedback constants](https://issuetracker.google.com/issues/195043382).
*/
internal fun interface HapticFeedbackPerformer {
fun performHapticFeedback()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy