[go: nahoru, domu]

blob: 5b10ecc549b5444bae6e4a43028417d23e1cae61 [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.compose.composer
import androidx.ui.core.Dp
import androidx.ui.core.dp
import androidx.ui.foundation.shape.DrawShape
import androidx.ui.foundation.shape.corner.CircleShape
import androidx.ui.graphics.Color
import androidx.ui.layout.AspectRatio
import androidx.ui.layout.Padding
import androidx.ui.layout.Table
import androidx.ui.layout.TableColumnWidth
@Sampled
@Composable
fun SimpleTable() {
Padding(2.dp) {
Table(columns = 8) {
for (i in 0 until 8) {
tableRow {
for (j in 0 until 8) {
Padding(2.dp) {
SizedSquare(color = Color.Magenta)
}
}
}
}
}
}
}
@Sampled
@Composable
fun TableWithDecorations() {
Padding(2.dp) {
Table(columns = 8) {
tableDecoration(overlay = false) {
SizedRectangle(color = Color.Green)
}
tableDecoration(overlay = false) {
DrawShape(shape = CircleShape, color = Color.Red)
}
for (i in 0 until 8) {
tableRow {
for (j in 0 until 8) {
Padding(2.dp) {
SizedSquare(color = Color.Magenta)
}
}
}
}
}
}
}
@Sampled
@Composable
fun TableWithDifferentColumnWidths() {
Padding(2.dp) {
Table(
columns = 5,
columnWidth = { columnIndex ->
when (columnIndex) {
0 -> TableColumnWidth.Wrap
1 -> TableColumnWidth.Flex(flex = 1f)
2 -> TableColumnWidth.Flex(flex = 3f)
3 -> TableColumnWidth.Fixed(width = 50.dp)
else -> TableColumnWidth.Fraction(fraction = 0.5f)
}
}
) {
for (i in 0 until 8) {
tableRow {
Padding(2.dp) {
SizedRectangle(color = Color.Magenta, width = 25.dp, height = 25.dp)
}
for (j in 1 until 5) {
Padding(2.dp) {
SizedRectangle(color = Color.Magenta, height = 25.dp)
}
}
}
}
}
}
}
@Composable
private fun SizedSquare(color: Color, size: Dp? = null) {
SizedRectangle(AspectRatio(1f), color = color, width = size)
}