Travis Griggs
04/20/2023, 4:08 PMBox(modifier = modifier) {
content()
if (isUnresponsive) {
Box(modifier = Modifier
.height(IntrinsicSize.Max).width(IntrinsicSize.Max).fillMaxWidth().fillMaxSize()
.background(Color.Green.copy(alpha = 0.5f)).align(Alignment.TopCenter)
...
But I cannot for the life of me get that inner box to show up, layering over the content(). Oddly a BottomCentered Row as a footer that comes right after that Box shows up just fine. I've put some logging statements on a globallyPositioned modifier, and it always reports a zero rect. I'm obviously throwing every "just fill the parent bounds, OK?" modifier at it there. But the contentless box just doesn't measure/layout. What's the headsmack I'm missing?myanmarking
04/20/2023, 5:04 PMTravis Griggs
04/20/2023, 5:18 PMmyanmarking
04/20/2023, 5:20 PMTravis Griggs
04/20/2023, 5:26 PMmyanmarking
04/20/2023, 5:29 PMTravis Griggs
04/20/2023, 5:31 PMmyanmarking
04/20/2023, 5:41 PM