Package-level declarations

Types

Link copied to clipboard
data class NfcConfig(val titleMessage: String, val subtitleMessage: String, val buttonText: String, val sheetGesturesEnabled: Boolean = true, val shouldDismissBottomSheetOnBackPress: Boolean = false, val shouldDismissBottomSheetOnClickOutside: Boolean = false, val nfcReadTimeout: Duration = 60.seconds, val nfcScanningAnimationSlot: @Composable ColumnScope.() -> Unit = { ScanningAnimationDefault.NfcScanningAnimation() })

Configuration for NFC scanning.

Link copied to clipboard
sealed class NfcReadResult

Represents the result of an NFC scanning operation.

Link copied to clipboard
data class NfcTagData(val serialNumber: String, val type: NfcTagType, val payload: String?, val techList: List<String> = emptyList())

Data class representing the information extracted from an NFC tag.

Link copied to clipboard

Enumeration of supported NFC tag types.