|
@@ -214,6 +214,8 @@ fun FormDialog(
|
|
|
val scope = rememberCoroutineScope()
|
|
val scope = rememberCoroutineScope()
|
|
|
// 默认放到屏幕外部
|
|
// 默认放到屏幕外部
|
|
|
val offsetY = remember { Animatable(1f) }
|
|
val offsetY = remember { Animatable(1f) }
|
|
|
|
|
+ val pvb = paddingValues.calculateBottomPadding()
|
|
|
|
|
+ val pb = if (pvb.value > 0) pvb else 10.dp
|
|
|
|
|
|
|
|
LaunchedEffect(Unit) {
|
|
LaunchedEffect(Unit) {
|
|
|
ctx.setNavigationLight(false)
|
|
ctx.setNavigationLight(false)
|
|
@@ -264,7 +266,7 @@ fun FormDialog(
|
|
|
Column(
|
|
Column(
|
|
|
Modifier
|
|
Modifier
|
|
|
.fillMaxWidth()
|
|
.fillMaxWidth()
|
|
|
- .padding(bottom = paddingValues.calculateBottomPadding())
|
|
|
|
|
|
|
+ .padding(bottom = pb)
|
|
|
) {
|
|
) {
|
|
|
Row(
|
|
Row(
|
|
|
Modifier
|
|
Modifier
|