[go: nahoru, domu]

blob: 8177a9ddaa8ffd161eb423e63fec046da3881621 [file] [log] [blame]
Anastasia Soboleva1de1d102019-09-30 16:48:31 +01001/*
2 * Copyright 2019 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.layout.samples
18
19import androidx.annotation.Sampled
20import androidx.compose.composer
21import androidx.compose.Composable
22import androidx.ui.core.dp
23import androidx.ui.foundation.ColoredRect
24import androidx.ui.graphics.Color
25import androidx.ui.layout.AspectRatio
26import androidx.ui.layout.Container
27import androidx.ui.layout.DpConstraints
28
29@Sampled
30@Composable
31fun SimpleAspectRatio() {
32 Container(constraints = DpConstraints.tightConstraintsForWidth(100.dp)) {
33 ColoredRect(color = Color.Gray, modifier = AspectRatio(2f))
34 }
35}