Skip to content
View lucassales2's full-sized avatar

Block or report lucassales2

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. Card-Games Card-Games Public

    Forked from ml-archive/kotlin-template

    Kotlin-template clean architecture

    Kotlin

  2. nodes-architecture-android nodes-architecture-android Public

    Forked from ml-archive/nodes-architecture-android

    This library contains interfaces and base classes for architectural elements in Nodes Android projects

    Kotlin

  3. BroadcastReceiverFlow.kt BroadcastReceiverFlow.kt
    1
    @Suppress("FunctionName")
    2
    fun BroadcastReceiverFlow(c: Context, intentFilter: IntentFilter): Flow<Intent> {
    3
        return callbackFlow {
    4
            val broadcastReceiver = object : android.content.BroadcastReceiver() {
    5
                override fun onReceive(context: Context, intent: Intent) {