Fixed
Status Update
Comments
mi...@gmail.com <mi...@gmail.com> #2
This also brings back dialog content size animations issues :( But on all devices this time.
See attached video
Repro:
Dialog(
onDismissRequest = {
if (dialogState.canDismiss.value) {
dialogNavigator.hide()
}
},
properties = properties,
content = {
Surface(
modifier = modifier
.safeContentPadding()
.fillMaxWidth(0.8f)
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
.....A composable that change it's size
}
},
)
ma...@google.com <ma...@google.com> #3
Can you give a fuller example for the animateContentSize()
problem?
ma...@google.com <ma...@google.com> #4
It does that for all the cases where the content change.
properties = DialogProperties(usePlatformDefaultWidth = false)
var show by remember { mutableStateOf(false) }
LaunchedEffect(Unit) {
delay(1000)
show = true
}
Column {
Text("X")
if (show) {
Text"Y)
}
}
Edit: This was a well known long time issue when not using usePlatformDefaultWidth = false
so we were forced to workaround with that.
Now even with it it trigger that. (Depending on the phone, it's either super slow, or laggy and jumping).
Description
1. Construct a urlfetch request that uses a non standard HTTP or HTTPS port
2. Fetch works locally in SDK
3. Fetch does not work remotely when deployed on appspot
What is the expected output? What do you see instead?
Either allowing non standard port fetches both locally and remotely, or mimicing the behavior in
both places.
What version of the product are you using? On what operating system?
1.1.0 on OS X
Please provide any additional information below.