mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-19 03:02:04 +01:00
No default values for expect functions 5
This commit is contained in:
@@ -34,7 +34,7 @@ fun ComponentRect(
|
|||||||
anchor: Alignment = Alignment.BottomCenter,
|
anchor: Alignment = Alignment.BottomCenter,
|
||||||
alignment: Alignment = Alignment.BottomCenter,
|
alignment: Alignment = Alignment.BottomCenter,
|
||||||
offset: DpOffset = DpOffset.Zero
|
offset: DpOffset = DpOffset.Zero
|
||||||
) = ca.gosyer.jui.ui.base.components.ComponentRectImpl(anchor, alignment, offset)
|
) = ComponentRectImpl(anchor, alignment, offset)
|
||||||
|
|
||||||
@ExperimentalFoundationApi
|
@ExperimentalFoundationApi
|
||||||
expect class ComponentRectImpl(
|
expect class ComponentRectImpl(
|
||||||
@@ -65,8 +65,8 @@ fun TooltipArea(
|
|||||||
@Composable
|
@Composable
|
||||||
internal expect fun RealTooltipArea(
|
internal expect fun RealTooltipArea(
|
||||||
tooltip: @Composable () -> Unit,
|
tooltip: @Composable () -> Unit,
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier,
|
||||||
delayMillis: Int = 500,
|
delayMillis: Int,
|
||||||
tooltipPlacement: TooltipPlacement,
|
tooltipPlacement: TooltipPlacement,
|
||||||
content: @Composable () -> Unit
|
content: @Composable () -> Unit
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ expect fun getLicenses(): Libs?
|
|||||||
@Composable
|
@Composable
|
||||||
internal expect fun InternalAboutLibraries(
|
internal expect fun InternalAboutLibraries(
|
||||||
libraries: ImmutableList<Library>,
|
libraries: ImmutableList<Library>,
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier,
|
||||||
lazyListState: LazyListState,
|
lazyListState: LazyListState,
|
||||||
contentPadding: PaddingValues,
|
contentPadding: PaddingValues,
|
||||||
showAuthor: Boolean,
|
showAuthor: Boolean,
|
||||||
|
|||||||
Reference in New Issue
Block a user