Skip to content

Commit

Permalink
- Updated NumberPicker
Browse files Browse the repository at this point in the history
  • Loading branch information
razzaghi.m committed Apr 6, 2024
1 parent fcfba71 commit 2435e92
Show file tree
Hide file tree
Showing 5 changed files with 2,778 additions and 3,291 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ internal fun ComposeCustomNumberPicker(
numberPicker.value = selectedValue
numberPicker.dividerColor = dividerColor.toArgb()
numberPicker.textColor = unSelectedTextColor.toArgb()
numberPicker.setSelectedTextColor(selectedTextColor.toArgb())
numberPicker.selectedTextColor = selectedTextColor.toArgb()
numberPicker.textSize = unSelectedTextStyle.fontSize.value * 2
numberPicker.setSelectedTextSize(selectedTextStyle.fontSize.value * 2)
numberPicker.selectedTextSize = selectedTextStyle.fontSize.value * 2
numberPicker.isFadingEdgeEnabled = false;
if (font != null) {
numberPicker.setSelectedTypeface(ResourcesCompat.getFont(context, font))
numberPicker.setTypeface(ResourcesCompat.getFont(context, font))
numberPicker.typeface = ResourcesCompat.getFont(context, font)
};
numberPicker.setOnValueChangedListener(onValueChangedListener)
if (displayedValues != null) {
Expand Down

This file was deleted.

Loading

0 comments on commit 2435e92

Please sign in to comment.