Skip to content
View PhilipDukhov's full-sized avatar
Block or Report

Block or report PhilipDukhov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. wireguard-apple wireguard-apple Public

    Forked from WireGuard/wireguard-apple

    Mirror only. Official repository is at https://git.zx2c4.com/wireguard-apple

    Swift 2

  2. well-app well-app Public

    Social network for doctors with video calls, built using Kotlin Multiplatform+Jetpack Compose+SwiftUI

    Kotlin

  3. Modifier.swipeableLeftRight.kt Modifier.swipeableLeftRight.kt
    1
    fun Modifier.swipeableLeftRight(onLeft: () -> Unit, onRight: () -> Unit): Modifier = composed {
    2
        var width by rememberSaveable { mutableStateOf(0f) }
    3
        val swipeableState = rememberSwipeableState(
    4
            SwipeDirection.Initial,
    5
            animationSpec = snap()
  4. Middle ellipsis in Text for Jetpack ... Middle ellipsis in Text for Jetpack Compose
    1
    @Composable
    2
    fun MiddleEllipsisText(
    3
        text: String,
    4
        modifier: Modifier = Modifier,
    5
        color: Color = Color.Unspecified,