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 ru.gildor.compose.sandbox | |
| import android.app.Activity | |
| import android.util.Log | |
| import android.view.inputmethod.InputMethodManager | |
| import androidx.compose.animation.AnimatedVisibility | |
| import androidx.compose.animation.ExperimentalAnimationApi | |
| import androidx.compose.animation.slideInVertically | |
| import androidx.compose.animation.slideOutVertically | |
| import androidx.compose.foundation.Text |
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
| import androidx.compose.runtime.Stable | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.drawBehind | |
| import androidx.compose.ui.graphics.Color | |
| import androidx.compose.ui.graphics.Path | |
| import androidx.compose.ui.graphics.drawscope.DrawScope | |
| import androidx.compose.ui.unit.Dp | |
| /** | |
| * Border definition can be extended to provide border style or [androidx.compose.ui.graphics.Brush] |
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
| import android.view.View | |
| import androidx.test.espresso.Espresso | |
| import androidx.test.espresso.NoMatchingViewException | |
| import androidx.test.espresso.ViewAssertion | |
| import androidx.test.espresso.ViewInteraction | |
| import androidx.test.espresso.assertion.ViewAssertions.matches | |
| import androidx.test.espresso.matcher.ViewMatchers.Visibility | |
| import androidx.test.espresso.matcher.ViewMatchers.withEffectiveVisibility | |
| import org.hamcrest.Matcher |
OlderNewer