SignaturePad
2.3.0indexedFacilitates digital signature capture with customizable pen color and width. Supports drawing on bitmaps for signature submission in applications.
3
Stars
—
Used by
dependents
46
Health
/ 100
Facilitates digital signature capture with customizable pen color and width. Supports drawing on bitmaps for signature submission in applications.
implementation("com.seanproctor:signaturepad:$signaturepad_version")
As of 1.0.1, supported targets are Android, JVM, and JS (experimental canvas).
val signaturePadState = rememberSignaturePadState()
SignaturePad(state = signaturePadState, penColor = Color.Black, penWidth = 3.dp)
Button(
onClick = {
val bitmap = ImageBitmap(600, 400)
signaturePadState.drawOnBitmap(penColor = Color.Black, penWidth = 2f)
submitSignature(bitmap)
},
) {
Text("Submit")
}
Surfaced from shared tags and platforms — no rankings paid for.