This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using Android.Widget; | |
namespace App.Droid.Extensions | |
{ | |
public static class AutoCompleteTextView_MostrarSugestoes | |
{ | |
public static void MostrarSugestoesAoInteragir(this AutoCompleteTextView @this) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.felipeslongo.mlbarcodescanner | |
import android.graphics.ImageFormat | |
import android.hardware.Camera | |
import android.os.Bundle | |
import android.util.Log | |
import android.view.SurfaceHolder | |
import android.view.SurfaceView | |
import android.widget.Toast | |
import androidx.appcompat.app.AppCompatActivity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package myapp | |
import android.text.Layout | |
import android.util.Log | |
import android.widget.TextView | |
import myapp.ExpandableTextViewDelegate.State.* | |
import kotlin.properties.Delegates | |
private const val TAG = "ExpandableTextViewDel" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.felipeslongo | |
import androidx.compose.foundation.layout.PaddingValues | |
import androidx.compose.foundation.layout.consumeWindowInsets | |
import androidx.compose.foundation.layout.imePadding | |
import androidx.compose.foundation.lazy.LazyColumn | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.getValue | |
import androidx.compose.runtime.mutableIntStateOf | |
import androidx.compose.runtime.remember |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.fsl.gist | |
import androidx.lifecycle.ViewModel | |
import androidx.lifecycle.ViewModelProvider | |
import co.poynt.setupwizard.fragmentsV2.WelcomeViewModel | |
import co.poynt.setupwizard.fragmentsV2.LanguagesViewModel | |
import co.poynt.setupwizard.fragmentsV2.SimCardCheckViewModel | |
import javax.inject.Inject | |
import javax.inject.Provider | |
import javax.inject.Singleton |
OlderNewer