[go: nahoru, domu]

blob: 4bba46ddcfcce120406ecb89a3fd2d1295df7c5e [file] [log] [blame]
Clara Bayarri5bace4e2020-02-06 16:42:21 +00001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package androidx.ui.material.studies.rally
18
19import androidx.compose.Composable
20import androidx.ui.core.Modifier
21import androidx.ui.foundation.Box
22import androidx.ui.foundation.Clickable
23import androidx.ui.graphics.Color
24import androidx.ui.graphics.vector.DrawVector
25import androidx.ui.graphics.vector.VectorAsset
26import androidx.ui.layout.LayoutHeight
27import androidx.ui.layout.LayoutWidth
28import androidx.ui.material.ripple.Ripple
29import androidx.ui.unit.dp
30
31@Composable
32fun RallyIconButton(
33 vectorImage: VectorAsset,
34 onClick: () -> Unit,
35 modifier: Modifier = Modifier.None
36) {
37 Box(modifier = modifier) {
38 Ripple(bounded = false) {
39 Clickable(onClick) {
40 Box(modifier = LayoutHeight(24.dp) + LayoutWidth(24.dp)) {
41 DrawVector(vectorImage = vectorImage, tintColor = Color.White)
42 }
43 }
44 }
45 }
46}