pushdeer/android/app/src/main/java/com/pushdeer/os/values/ConstValues.kt

12 lines
358 B
Kotlin

package com.pushdeer.os.values
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.ui.unit.dp
object ConstValues {
val MainPageSidePadding = 37.dp
val MainPageSidePaddings = PaddingValues(horizontal = 37.dp)
val bigRoundCorner = RoundedCornerShape(8.dp)
}