mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 23: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,
|
||||
alignment: Alignment = Alignment.BottomCenter,
|
||||
offset: DpOffset = DpOffset.Zero
|
||||
) = ca.gosyer.jui.ui.base.components.ComponentRectImpl(anchor, alignment, offset)
|
||||
) = ComponentRectImpl(anchor, alignment, offset)
|
||||
|
||||
@ExperimentalFoundationApi
|
||||
expect class ComponentRectImpl(
|
||||
@@ -65,8 +65,8 @@ fun TooltipArea(
|
||||
@Composable
|
||||
internal expect fun RealTooltipArea(
|
||||
tooltip: @Composable () -> Unit,
|
||||
modifier: Modifier = Modifier,
|
||||
delayMillis: Int = 500,
|
||||
modifier: Modifier,
|
||||
delayMillis: Int,
|
||||
tooltipPlacement: TooltipPlacement,
|
||||
content: @Composable () -> Unit
|
||||
)
|
||||
|
||||
@@ -50,7 +50,7 @@ expect fun getLicenses(): Libs?
|
||||
@Composable
|
||||
internal expect fun InternalAboutLibraries(
|
||||
libraries: ImmutableList<Library>,
|
||||
modifier: Modifier = Modifier,
|
||||
modifier: Modifier,
|
||||
lazyListState: LazyListState,
|
||||
contentPadding: PaddingValues,
|
||||
showAuthor: Boolean,
|
||||
|
||||
Reference in New Issue
Block a user