Skip to content

Commit

Permalink
Update isVeiled property's getter visibility to public
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Sep 18, 2022
1 parent 92e7ab8 commit 94262b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions androidveil/api/androidveil.api
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public final class com/skydoves/androidveil/VeilRecyclerFrameView : android/widg
public final fun getShimmer ()Lcom/facebook/shimmer/Shimmer;
public final fun getShimmerEnable ()Z
public final fun getVeiledRecyclerView ()Landroidx/recyclerview/widget/RecyclerView;
public final fun isVeiled ()Z
public final fun setAdapter (Landroidx/recyclerview/widget/RecyclerView$Adapter;)V
public final fun setAdapter (Landroidx/recyclerview/widget/RecyclerView$Adapter;Landroidx/recyclerview/widget/RecyclerView$LayoutManager;)V
public final fun setDefaultChildVisible (Z)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public class VeilRecyclerFrameView : RelativeLayout {
private val userRecyclerView: RecyclerView = RecyclerView(context)
private val veiledRecyclerView: RecyclerView = RecyclerView(context)
private var veiledAdapter: VeiledAdapter? = null
private var isVeiled = false
public var isVeiled: Boolean = false
private set

@ColorInt
private var baseColor = Color.LTGRAY
Expand Down

0 comments on commit 94262b7

Please sign in to comment.