Nikolay Igotti
4 years ago
24 changed files with 97 additions and 108 deletions
@ -1,39 +1,38 @@ |
|||||||
package example.imageviewer.style |
package example.imageviewer.style |
||||||
|
|
||||||
import androidx.compose.runtime.Composable |
import androidx.compose.runtime.Composable |
||||||
import androidx.compose.ui.graphics.ImageAsset |
|
||||||
import androidx.compose.ui.res.imageResource |
import androidx.compose.ui.res.imageResource |
||||||
import example.imageviewer.common.R |
import example.imageviewer.common.R |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icEmpty(): ImageAsset = imageResource(R.raw.empty) |
fun icEmpty() = imageResource(R.raw.empty) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icBack(): ImageAsset = imageResource(R.raw.back) |
fun icBack() = imageResource(R.raw.back) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icRefresh(): ImageAsset = imageResource(R.raw.refresh) |
fun icRefresh() = imageResource(R.raw.refresh) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icDots(): ImageAsset = imageResource(R.raw.dots) |
fun icDots() = imageResource(R.raw.dots) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterGrayscaleOn(): ImageAsset = imageResource(R.raw.grayscale_on) |
fun icFilterGrayscaleOn() = imageResource(R.raw.grayscale_on) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterGrayscaleOff(): ImageAsset = imageResource(R.raw.grayscale_off) |
fun icFilterGrayscaleOff() = imageResource(R.raw.grayscale_off) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterPixelOn(): ImageAsset = imageResource(R.raw.pixel_on) |
fun icFilterPixelOn() = imageResource(R.raw.pixel_on) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterPixelOff(): ImageAsset = imageResource(R.raw.pixel_off) |
fun icFilterPixelOff() = imageResource(R.raw.pixel_off) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterBlurOn(): ImageAsset = imageResource(R.raw.blur_on) |
fun icFilterBlurOn() = imageResource(R.raw.blur_on) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterBlurOff(): ImageAsset = imageResource(R.raw.blur_off) |
fun icFilterBlurOff() = imageResource(R.raw.blur_off) |
||||||
|
|
||||||
@Composable |
@Composable |
||||||
fun icFilterUnknown(): ImageAsset = imageResource(R.raw.filter_unknown) |
fun icFilterUnknown() = imageResource(R.raw.filter_unknown) |
||||||
|
@ -1,5 +1,5 @@ |
|||||||
distributionBase=GRADLE_USER_HOME |
distributionBase=GRADLE_USER_HOME |
||||||
distributionPath=wrapper/dists |
distributionPath=wrapper/dists |
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip |
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip |
||||||
zipStoreBase=GRADLE_USER_HOME |
zipStoreBase=GRADLE_USER_HOME |
||||||
zipStorePath=wrapper/dists |
zipStorePath=wrapper/dists |
||||||
|
@ -1,5 +1,5 @@ |
|||||||
distributionBase=GRADLE_USER_HOME |
distributionBase=GRADLE_USER_HOME |
||||||
distributionPath=wrapper/dists |
distributionPath=wrapper/dists |
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip |
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip |
||||||
zipStoreBase=GRADLE_USER_HOME |
zipStoreBase=GRADLE_USER_HOME |
||||||
zipStorePath=wrapper/dists |
zipStorePath=wrapper/dists |
||||||
|
@ -1,5 +1,5 @@ |
|||||||
distributionBase=GRADLE_USER_HOME |
distributionBase=GRADLE_USER_HOME |
||||||
distributionPath=wrapper/dists |
distributionPath=wrapper/dists |
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip |
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip |
||||||
zipStoreBase=GRADLE_USER_HOME |
zipStoreBase=GRADLE_USER_HOME |
||||||
zipStorePath=wrapper/dists |
zipStorePath=wrapper/dists |
||||||
|
Loading…
Reference in new issue