Skip to content

Commit

Permalink
add qualifier for new variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasin Arslan committed Feb 14, 2024
1 parent c290a94 commit 871e1ef
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.trendyol.uicomponents.dialogs
import android.text.SpannableString
import android.webkit.DownloadListener
import android.webkit.WebView
import androidx.annotation.ColorInt
import androidx.annotation.DrawableRes

open class Builder internal constructor() {
Expand All @@ -12,8 +13,8 @@ open class Builder internal constructor() {
var titleTextColor: Int? = null
var titleTextPosition: TextPosition? = null
var showCloseButton: Boolean = false
var closeButtonColor: Int? = null
var closeButtonDrawable: Int? = null
@ColorInt var closeButtonColor: Int? = null
@DrawableRes var closeButtonDrawable: Int? = null
var closeButtonListener: ((DialogFragment) -> Unit)? = null
var animateCornerRadiusWhenExpand: Boolean = false
var onDialogDismissListener: ((DialogFragment) -> Unit)? = null
Expand Down

0 comments on commit 871e1ef

Please sign in to comment.