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

androidxCommonMain.com.huanshankeji.compose.layout.ext.Hidden.androidxCommon.kt Maven / Gradle / Ivy

package com.huanshankeji.compose.layout.ext

import androidx.compose.ui.layout.layout
import com.huanshankeji.compose.ui.Modifier

// This approach comes from Gemini: https://g.co/gemini/share/27cfdc47ecff.
// also see: https://developer.android.com/develop/ui/compose/layouts/custom
actual fun Modifier.hidden(): Modifier =
    platformModify {
        layout { measurable, constraints ->
            val placeable = measurable.measure(constraints)
            layout(placeable.width, placeable.height) {}
        }
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy