[go: nahoru, domu]

blob: 5417fdca4b6837b8af643305b8943db3e5c447a1 [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.ui.layout.samples
import androidx.annotation.Sampled
import androidx.compose.Composable
import androidx.ui.core.Alignment
import androidx.ui.core.dp
import androidx.ui.foundation.ColoredRect
import androidx.ui.foundation.shape.DrawShape
import androidx.ui.foundation.shape.RectangleShape
import androidx.ui.graphics.Color
import androidx.ui.layout.Align
import androidx.ui.layout.Container
import androidx.ui.layout.LayoutExpanded
import androidx.ui.layout.LayoutExpandedHeight
import androidx.ui.layout.LayoutExpandedWidth
@Sampled
@Composable
fun SimpleExpandedWidthModifier() {
Container(modifier = LayoutExpandedWidth) {
DrawShape(RectangleShape, Color.Red)
ColoredRect(color = Color.Magenta, width = 100.dp, height = 100.dp)
}
}
@Sampled
@Composable
fun SimpleExpandedHeightModifier() {
Align(alignment = Alignment.TopLeft) {
Container(modifier = LayoutExpandedHeight) {
DrawShape(RectangleShape, Color.Red)
ColoredRect(color = Color.Magenta, width = 100.dp, height = 100.dp)
}
}
}
@Sampled
@Composable
fun SimpleExpandedModifier() {
Align(alignment = Alignment.TopLeft) {
Container(modifier = LayoutExpanded) {
DrawShape(RectangleShape, Color.Red)
ColoredRect(color = Color.Magenta, width = 100.dp, height = 100.dp)
}
}
}