-
Notifications
You must be signed in to change notification settings - Fork 0
1.2.1
Zahid edited this page Jun 30, 2025
·
1 revision
Released: 07.06.2025
Deskit 1.2.1 is a minor update that refines the user experience by addressing text styling and dialog sizing issues introduced in version 1.2.0.
- ✍️ Text Styling Updates: Improved text styling for better readability and consistency across dialogs.
-
📏 Flexible Dialog Sizing: Removed hardcoded width and height constraints for
InfoDialog
andConfirmationDialog
, allowing for more adaptive layouts.
- Text Styling: Minor adjustments to font sizes, weights, and spacing to enhance the visual hierarchy and readability in all dialogs.
-
Dialog Sizing: Eliminated fixed dimensions in
InfoDialog
andConfirmationDialog
, enabling the dialogs to resize dynamically based on content for a more polished and responsive UI.
InfoDialog(
width = 450.dp,
height = 400.dp,
title = "Custom Content",
icon = painterResource(Res.drawable.info),
content = {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Text("This is a custom message with")
Spacer(Modifier.height(8.dp))
Text("multiple components", fontWeight = FontWeight.Bold)
Spacer(Modifier.height(16.dp))
LinearProgressIndicator(modifier = Modifier.width(200.dp))
}
},
onClose = { }
)
To use Deskit 1.2.1, update your build.gradle.kts
or settings.gradle.kts
as described in the Installation guide, ensuring the dependency is set to:
implementation("com.github.zahid4kh:deskit:1.2.1")
Made with ❤️ | Free stuff is the best stuff