From fdafdd39ad0cb8e3bf97c7687d0cf794599d63c3 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 21 Jan 2025 16:36:21 +0700 Subject: [PATCH] MinimalHeaderView: Drop unused custom view Signed-off-by: Aayush Gupta --- .../view/epoxy/views/MinimalHeaderView.kt | 54 ------------------- 1 file changed, 54 deletions(-) delete mode 100644 app/src/main/java/com/aurora/store/view/epoxy/views/MinimalHeaderView.kt diff --git a/app/src/main/java/com/aurora/store/view/epoxy/views/MinimalHeaderView.kt b/app/src/main/java/com/aurora/store/view/epoxy/views/MinimalHeaderView.kt deleted file mode 100644 index e801e3670..000000000 --- a/app/src/main/java/com/aurora/store/view/epoxy/views/MinimalHeaderView.kt +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Aurora Store - * Copyright (C) 2021, Rahul Kumar Patel - * - * Aurora Store is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * Aurora Store is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Aurora Store. If not, see . - * - */ - -package com.aurora.store.view.epoxy.views - -import android.content.Context -import android.util.AttributeSet -import com.airbnb.epoxy.CallbackProp -import com.airbnb.epoxy.ModelProp -import com.airbnb.epoxy.ModelView -import com.airbnb.epoxy.OnViewRecycled -import com.aurora.store.databinding.ViewActionHeaderBinding - -@ModelView( - autoLayout = ModelView.Size.MATCH_WIDTH_WRAP_HEIGHT, - baseModelClass = BaseModel::class -) -class MinimalHeaderView @JvmOverloads constructor( - context: Context?, - attrs: AttributeSet? = null, - defStyleAttr: Int = 0 -) : BaseView(context, attrs, defStyleAttr) { - - @ModelProp - fun title(title: String) { - binding.txtTitle.text = title - } - - @CallbackProp - fun click(onClickListener: OnClickListener?) { - binding.imgAction.setOnClickListener(onClickListener) - } - - @OnViewRecycled - fun clear() { - binding.imgAction.visibility = VISIBLE - } -}