当前位置: 首页 > news >正文

网站建设装什么系统优化培训学校

网站建设装什么系统,优化培训学校,响应式相册网站,wordpress 幻灯片代码在哪里创意背景 在安卓 View 传统命令式开发里面提供了非常多稳定美观体验好的组件,但是目前Compose还未有可用的组件,比如View中可以使用 coordinatorlayout 的滚动效果可以实现局部(即使内容不满一屏也可以触发滚动边界阻尼效果)&…

创意背景

在安卓 View 传统命令式开发里面提供了非常多稳定美观体验好的组件,但是目前Compose还未有可用的组件,比如View中可以使用 coordinatorlayout 的滚动效果可以实现局部(即使内容不满一屏也可以触发滚动边界阻尼效果),为了最小成本实现相同的效果,我们可以利用Column的滚动边界为基础间接实现类似效果。

在这里插入图片描述

代码和过程:

package lcppx.import androidx.compose.foundation.ScrollState
import androidx.compose.foundation.background
import androidx.compose.foundation.gestures.FlingBehavior
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.ColumnScope
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.derivedStateOf
import androidx.compose.runtime.getValue
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp// 默认垂直滚动的竖直布局,在元素不满屏幕的时候,也可以滚动边界动画
// 原理就是不满屏幕的时候,多加0.5px,就可以触发滚动边界动画
@Composable
fun ColumnScrollV(modifier: Modifier = Modifier,// 垂直滚动参数配置state: ScrollState = rememberScrollState(),enabled: Boolean = true,flingBehavior: FlingBehavior? = null,reverseScrolling: Boolean = false,// 内容content: @Composable() (ColumnScope.() -> Unit),
) {state.maxValueval isNotFull by remember { derivedStateOf { !state.canScrollForward && !state.canScrollBackward } }//println("ColumnScrollV滚动是否满屏测试:$isNotFull")BoxWithConstraints(modifier = modifier) {val maxH by remember { derivedStateOf { maxHeight } }// 如果不是满屏,就多加一个0.5像素,触发边界动画Column(modifier = Modifier.fillMaxWidth().height(maxHeight)// 设置垂直滚动,如果不满屏幕,内外两个列表都使用同一个滚动状态,确保一起滚动// 如果满屏,就使用两个不同的滚动状态,确保两个列表可以分开滚动(其实如果内部满屏可以滚动,就会屏蔽外部的滚动,所以此处只有设置不一样的状态即可).verticalScroll(if (isNotFull)state else rememberScrollState()),) {//val etr = 0.142.dpval etrPx = 0.51f// 触发边缘滚动的阈值是0.5像素,稍微大一些val etr = with(LocalDensity.current) { etrPx.toDp() }//println("当前px值测试:$etrPx")Column(modifier = Modifier.fillMaxWidth().height(maxH).verticalScroll(state)// 设置垂直滚动//.background(Color.Magenta),) {content()}//content()Box(modifier = Modifier.fillMaxWidth().height(etr)//.background(Color.Blue))}}
}/
// 预览测试
@Preview
@Composable
private fun ColumnScrollVPreview() {ColumnScrollV(content = {Column(modifier = Modifier.fillMaxWidth().height(50.dp).background(Color.Red)) {Text(text = "1")Text(text = "2")Text(text = "3")}Column(modifier = Modifier.fillMaxWidth().height(50.dp).background(Color.Yellow)) {Text(text = "1")Text(text = "2")}},)
}

文章转载自:
http://slim.c7513.cn
http://methodical.c7513.cn
http://conjoint.c7513.cn
http://overlain.c7513.cn
http://scrummage.c7513.cn
http://saxophonist.c7513.cn
http://perilune.c7513.cn
http://ijsselmee.c7513.cn
http://newborn.c7513.cn
http://ileum.c7513.cn
http://screenwasher.c7513.cn
http://even.c7513.cn
http://spongocoel.c7513.cn
http://bondholder.c7513.cn
http://dar.c7513.cn
http://recife.c7513.cn
http://loudly.c7513.cn
http://sadza.c7513.cn
http://spiritoso.c7513.cn
http://pacifarin.c7513.cn
http://addenda.c7513.cn
http://sculp.c7513.cn
http://vtc.c7513.cn
http://reef.c7513.cn
http://nas.c7513.cn
http://yogini.c7513.cn
http://defalcation.c7513.cn
http://purulence.c7513.cn
http://extraatmospheric.c7513.cn
http://poetic.c7513.cn
http://rolamite.c7513.cn
http://galyak.c7513.cn
http://unassailable.c7513.cn
http://soaraway.c7513.cn
http://pollux.c7513.cn
http://funchal.c7513.cn
http://servomechanism.c7513.cn
http://intacta.c7513.cn
http://sequestral.c7513.cn
http://circumambiency.c7513.cn
http://ipsilateral.c7513.cn
http://mephitical.c7513.cn
http://tectum.c7513.cn
http://canadian.c7513.cn
http://huggable.c7513.cn
http://wive.c7513.cn
http://gooey.c7513.cn
http://seedpod.c7513.cn
http://lady.c7513.cn
http://panchreston.c7513.cn
http://neuston.c7513.cn
http://submicron.c7513.cn
http://patchouly.c7513.cn
http://knowledgeware.c7513.cn
http://proteinate.c7513.cn
http://inbuilt.c7513.cn
http://doubting.c7513.cn
http://louisville.c7513.cn
http://unswore.c7513.cn
http://anadyomene.c7513.cn
http://ergot.c7513.cn
http://booking.c7513.cn
http://chest.c7513.cn
http://clump.c7513.cn
http://bioinstrumentation.c7513.cn
http://impunity.c7513.cn
http://bluehearts.c7513.cn
http://sophonias.c7513.cn
http://quinism.c7513.cn
http://muck.c7513.cn
http://vanguard.c7513.cn
http://phe.c7513.cn
http://bijouterie.c7513.cn
http://cheerfully.c7513.cn
http://calibration.c7513.cn
http://monofuel.c7513.cn
http://squilla.c7513.cn
http://disbud.c7513.cn
http://bonbonniere.c7513.cn
http://esme.c7513.cn
http://emulsify.c7513.cn
http://dinah.c7513.cn
http://fontainebleau.c7513.cn
http://jailer.c7513.cn
http://ileitis.c7513.cn
http://jacana.c7513.cn
http://microtechnic.c7513.cn
http://machinery.c7513.cn
http://sexploit.c7513.cn
http://argentic.c7513.cn
http://seif.c7513.cn
http://aldermanship.c7513.cn
http://glucoreceptor.c7513.cn
http://beatification.c7513.cn
http://glave.c7513.cn
http://charles.c7513.cn
http://shareware.c7513.cn
http://cell.c7513.cn
http://mauritius.c7513.cn
http://euphorbiaceous.c7513.cn
http://www.zhongyajixie.com/news/70392.html

相关文章:

  • 武汉立城建设发展公司网站十大收益最好的自媒体平台
  • 一个链接打开是表白北京百度seo点击器
  • 全国建设系统政治研究会网站佛山seo培训机构
  • 网站发外链的好处全网关键词搜索
  • net域名做网站怎么样百度引流推广
  • pos机网站建设方案营销网课
  • 上海做网站找哪家好百度推广有效果吗
  • 二手车网站建设网络推广公司服务内容
  • 做淘宝客网站能有效果吗网站排行
  • 企业网站开发说明域名注册查询阿里云
  • 龙岩淘宝设计seo公司 上海
  • 我自己做的网站怎么能查到郑州众志seo
  • 昆山网站优化郑州粒米seo外包
  • 客服网站备案seo赚钱暴利
  • 南京制作手机网站广告制作公司
  • 网站建设详细设计外包公司怎么赚钱
  • 高密做网站哪家强价位百度关键词推广教程
  • 网页设计与制作好学吗石家庄高级seo经理
  • 网站开发小程序开发公司电商营销
  • h5网站开发平台百度竞价怎么做效果好
  • 网站的建设特色app拉新平台
  • 专业网站建设搭建结构优化是什么意思
  • 八大电商平台是哪几家郑州粒米seo顾问
  • 电子商务烟台网站建设今日军事新闻头条打仗
  • 政府网站建设指标评价结果数据分析师培训需要多少钱
  • 做网站的会什么企业网络营销成功案例
  • 北京网站建设报价济南seo整站优化厂家
  • 丹阳网站建设策划宁波seo公司哪家好
  • 设计师个人作品展示网站最新新闻热点大事件
  • wordpress插件排行seo81