commonMain.com.lt.compose_views.zoom.ImageViewer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ComposeViews Show documentation
Show all versions of ComposeViews Show documentation
Jatpack(JetBrains) Compose views
/*
* Copyright lt 2023
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lt.compose_views.zoom
import androidx.compose.foundation.Image
import androidx.compose.foundation.gestures.detectTapGestures
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.input.pointer.pointerInput
/**
* creator: lt 2023/6/6 [email protected]
* effect : 图片预览
* Image viewer
* warning:
* @param painter 要绘制的图像
* Painter to draw
* @param modifier 修饰
* @param zoomState [ZoomLayout]的状态
* ZoomLayout's state
* @param userCanRotation 用户是否可以旋转
* Whether the user can rotate
*/
@Composable
fun ImageViewer(
painter: Painter,
modifier: Modifier = Modifier,
zoomState: ZoomState = rememberZoomState(),
userCanRotation: Boolean = false,
) {
ZoomLayout(
modifier.pointerInput(zoomState) {
//双击时设置缩放大小
detectTapGestures(onDoubleTap = {
zoomState.zoom = when {
zoomState.zoom < 1f || zoomState.zoom == 4f -> {
zoomState.offset = Offset.Zero
1f
}
zoomState.zoom in 1f..2.49f -> 2.5f
else -> 4f
}
})
},
Alignment.Center,
zoomState = zoomState,
userCanRotation = userCanRotation,
whetherToLimitSize = true,
) {
Image(
painter,
"Image viewer",
)
}
}