Files
assistant-android/app/src/main/java/com/gh/common/iinterface/ISearchToolbarTab.kt
2024-09-26 17:42:44 +08:00

10 lines
342 B
Kotlin

package com.gh.common.iinterface
import com.gh.gamecenter.entity.BottomTab
interface ISearchToolbarTab {
fun onScrollChanged(totalHeight: Int, offset: Int, isDarkModeChanged: Boolean)
fun changeAppBarColor(color: Int, pageId: String)
fun updateSearchStyle(searchStyle: BottomTab.SearchStyle)
fun getCurrentTabIndex(): Int?
}