[go: nahoru, domu]

blob: 981e39e05a254b01de178a0f713f9371876ce8c4 [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.framework.samples
import androidx.annotation.Sampled
import androidx.compose.Composable
import androidx.ui.core.Layout
import androidx.ui.core.ParentData
import androidx.ui.foundation.Box
import androidx.ui.graphics.Color
import androidx.ui.layout.LayoutSize
import androidx.ui.unit.dp
@Sampled
@Composable
fun ParentDataSample() {
val parentDataComposable = @Composable {
ParentData(data = 5) {
Box(LayoutSize(50.dp), backgroundColor = Color.Blue)
}
}
Layout(parentDataComposable) { measurables, constraints, _ ->
// The parentData will be 5.
measurables[0].parentData as Int
layout(constraints.maxWidth, constraints.maxHeight) {}
}
}