mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-24 03:55:05 +03:00
9 lines
356 B
Kotlin
9 lines
356 B
Kotlin
package ru.fromchat.utils
|
|
|
|
import androidx.compose.foundation.layout.WindowInsets
|
|
import androidx.compose.foundation.layout.WindowInsetsSides
|
|
import androidx.compose.foundation.layout.exclude
|
|
import androidx.compose.foundation.layout.only
|
|
|
|
@Suppress("NOTHING_TO_INLINE")
|
|
inline fun WindowInsets.exclude(sides: WindowInsetsSides) = exclude(this.only(sides)) |