All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.lt.compose_views.value_selector.ValueSelectState.kt Maven / Gradle / Ivy

There is a newer version: 1.6.11.4
Show newest version
/*
 * Copyright lt 2023
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.lt.compose_views.value_selector

import androidx.compose.foundation.lazy.LazyListState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.Stable
import androidx.compose.runtime.remember

/**
 * creator: lt  2022/12/3  [email protected]
 * effect : ValueSelect的状态
 *          State of the [ValueSelect]
 * warning:
 */
@Stable
class ValueSelectState {
    internal var _lazyListState: LazyListState? = null
    val lazyListState: LazyListState
        get() = _lazyListState!!
    internal var cacheSize = 0
    internal var valueSize = 0
    internal var isLoop = false

    /**
     * 获取当前选中的索引
     * Get current selected index
     */
    fun getSelectIndex(): Int = lazyListState.firstVisibleItemIndex % valueSize + (if (isLoop) cacheSize else 0)
}

/**
 * 创建一个[remember]的[ValueSelectState]
 * Create the [ValueSelectState] of [remember]
 */
@Composable
fun rememberValueSelectState() = remember { ValueSelectState() }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy