[go: nahoru, domu]

blob: 3c45637b7fc0e3b504bbbe314156f5aa1b14532b [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
Clara Bayarri581b24d2020-02-10 16:15:28 +000031/**
32 * A button made with a 24x24dp icon
33 */
Clara Bayarri5bace4e2020-02-06 16:42:21 +000034@Composable
Clara Bayarri255d76a2020-02-12 12:23:09 +000035fun IconButton(
Clara Bayarri5bace4e2020-02-06 16:42:21 +000036 vectorImage: VectorAsset,
37 onClick: () -> Unit,
38 modifier: Modifier = Modifier.None
39) {
40 Box(modifier = modifier) {
41 Ripple(bounded = false) {
42 Clickable(onClick) {
Clara Bayarri255d76a2020-02-12 12:23:09 +000043 Icon(vectorImage)
Clara Bayarri5bace4e2020-02-06 16:42:21 +000044 }
45 }
46 }
Clara Bayarri581b24d2020-02-10 16:15:28 +000047}
48
49/**
50 * 24x24dp icon from a resource id.
51 */
52@Composable
Clara Bayarri255d76a2020-02-12 12:23:09 +000053fun Icon(vectorImage: VectorAsset, tintColor: Color = Color.White) {
Clara Bayarri581b24d2020-02-10 16:15:28 +000054 Box(modifier = LayoutHeight(24.dp) + LayoutWidth(24.dp)) {
55 DrawVector(
56 vectorImage = vectorImage,
57 tintColor = tintColor
58 )
59 }
Clara Bayarri5bace4e2020-02-06 16:42:21 +000060}