A Compose Multiplatform library for capturing and exporting signatures as ImageBitmap with customizable options. Perfect for electronic signatures, legal documents, and more.
Supported platforms: Android · iOS · Desktop (JVM) · Web (JS) · Web (WasmJS)
See the project's website for full documentation.
- Capture signatures as
ImageBitmapon all platforms - Customizable signature color, thickness, pad color, shape, and border
- Optional guideline with configurable style, padding, and dash pattern
- Hint text when the signature pad is empty
- State management with
rememberSignatureState()for persistence - Clear and complete actions via
SignatureAction
Add the Maven Central repository if it is not already there:
repositories {
mavenCentral()
}Add the dependency to your commonMain source set:
kotlin {
sourceSets {
commonMain {
dependencies {
implementation("io.github.joelkanyi:sain:<latest-version>")
}
}
}
}Add the dependency to your app's build.gradle.kts:
dependencies {
implementation("io.github.joelkanyi:sain:<latest-version>")
}Add the following to your libs.versions.toml:
[versions]
sain = "<latest-version>"
[libraries]
sain = { module = "io.github.joelkanyi:sain", version.ref = "sain" }Then add the dependency in your build.gradle.kts:
dependencies {
implementation(libs.sain)
}Add the Sain composable to your project:
var imageBitmap by remember { mutableStateOf<ImageBitmap?>(null) }
Sain(
signatureHeight = 250.dp,
signaturePadColor = Color.White,
signatureBorderStroke = BorderStroke(
width = .5.dp,
color = MaterialTheme.colorScheme.onSurface,
),
signaturePadShape = RoundedCornerShape(8.dp),
onComplete = { signatureBitmap ->
if (signatureBitmap != null) {
imageBitmap = signatureBitmap
} else {
println("Signature is empty")
}
},
) { action ->
Row(
modifier = Modifier
.padding(top = 16.dp)
.fillMaxWidth(),
horizontalArrangement = Arrangement.spacedBy(16.dp),
) {
Button(
modifier = Modifier.weight(1f),
onClick = {
imageBitmap = null
action(SignatureAction.CLEAR)
},
) {
Text("Clear")
}
Button(
modifier = Modifier.weight(1f),
onClick = {
action(SignatureAction.COMPLETE)
},
) {
Text("Complete")
}
}
}| Android | iOS | Desktop |
|---|---|---|
![]() |
![]() |
![]() |
| Web (JS) | Web (WasmJS) |
|---|---|
![]() |
![]() |
Copyright 2023 Joel Kanyi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.




