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

3000元做网站app制作团队

3000元做网站,app制作团队,优改网logo设计免费官网,前端开发工程师需要考什么证Flutter 与 Compose 组件辣么像#xff0c;难道是同一个google团队整的#xff1b;也未深究#xff0c;只是猜测。 创建项目 需要使用新版本Android studio#xff0c;忽略步骤… 项目目录 MainActivity说明 1 系统默认页面 Preview 修饰的方法#xff0c;只用来供开发…Flutter 与 Compose 组件辣么像难道是同一个google团队整的也未深究只是猜测。 创建项目 需要使用新版本Android studio忽略步骤… 项目目录 MainActivity说明 1 系统默认页面 Preview 修饰的方法只用来供开发者预览使用删除不影响运行 Composable 修饰的方法 只能被Composable修饰的方法调用 预览效果 2 MyApplicationTheme 说明 MyApplicationTheme 对应的时 ui.theme 中的Theme.kt中的 MyApplicationTheme ctrl左键点过去 下面看代码 Composable fun MyApplicationTheme(darkTheme: Boolean isSystemInDarkTheme(),// Dynamic color is available on Android 12dynamicColor: Boolean true,content: Composable () - Unit ) {咋看这这么像flutter 万物皆组件嘞咱也不懂咱也不敢吭 同样MyApplicationTheme 是被Composable注解修饰 darkTheme: Boolean isSystemInDarkTheme(), //判断是否是暗黑主题 那么我们把它写死成ture 预览结果 变黑啦 dynamicColor: Boolean false, //动态颜色 暂未发现有啥变化 代码里判断了支持动态颜色调用了 /*** Creates a light dynamic color scheme.** Use this function to create a color scheme based off the system wallpaper. If the developer* changes the wallpaper this color scheme will change accordingly. This dynamic scheme is a* light theme variant.** param context The context required to get system resource data.*/ RequiresApi(Build.VERSION_CODES.S) fun dynamicLightColorScheme(context: Context): ColorScheme {val tonalPalette dynamicTonalPalette(context)return lightColorScheme(primary tonalPalette.primary40,onPrimary tonalPalette.primary100,primaryContainer tonalPalette.primary90,onPrimaryContainer tonalPalette.primary10,inversePrimary tonalPalette.primary80,secondary tonalPalette.secondary40,onSecondary tonalPalette.secondary100,secondaryContainer tonalPalette.secondary90,onSecondaryContainer tonalPalette.secondary10,tertiary tonalPalette.tertiary40,onTertiary tonalPalette.tertiary100,tertiaryContainer tonalPalette.tertiary90,onTertiaryContainer tonalPalette.tertiary10,background tonalPalette.neutral99,onBackground tonalPalette.neutral10,surface tonalPalette.neutral99,onSurface tonalPalette.neutral10,surfaceVariant tonalPalette.neutralVariant90,onSurfaceVariant tonalPalette.neutralVariant30,inverseSurface tonalPalette.neutral20,inverseOnSurface tonalPalette.neutral95,outline tonalPalette.neutralVariant50,) }百度翻译 content: Composable () - Unit 页面布局内容Composable修饰的组件 content 应该就是Surface,kotlin 最后一个参数如果是lambda表达式那么lambda表达式可以放在外边 Preview(showBackground true) Composable fun GreetingPreview() {MyApplicationTheme(content {Surface(modifier Modifier.fillMaxSize(),color MaterialTheme.colorScheme.background) {Greeting(Android)}}) }即 Preview(showBackground true) Composable fun GreetingPreview() {MyApplicationTheme(){Surface(modifier Modifier.fillMaxSize(),color MaterialTheme.colorScheme.background) {Greeting(Android)}} }MyApplicationTheme 方法的实现代码分析 val colorScheme when {dynamicColor Build.VERSION.SDK_INT Build.VERSION_CODES.S - { //这就是动态颜色val context LocalContext.currentif (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)}darkTheme - DarkColorSchemeelse - LightColorScheme}val view LocalView.current if (!view.isInEditMode) { //这个就是判断 是否在编辑模式 然后设置了状态栏的颜色SideEffect {val window (view.context as Activity).windowwindow.statusBarColor colorScheme.primary.toArgb()WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars darkTheme //这一样也是设置状态栏的颜色 大概意思就是看翻译}}MaterialTheme(colorScheme colorScheme, //设置主题颜色 ui.theme.Colortypography Typography, // ui.theme.Typecontent content)view.isInEditMode 注释的翻译 WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars darkTheme 通过以上的分析我们或许可以实现 多主题的功能 用来更改app的主题颜色 字体显示大小比如老年模式等功能 //TODO 后续尝试 基础组件 组件一般都包含Modifier的参数 Composable fun Greeting(name: String, modifier: Modifier Modifier) {Text(text Hello $name!,modifier Modifier.padding()) }方法参数有个 modifier: Modifier Modifier ctrl左键 点 发现是Modifier.kt 的对象 // The companion object implements Modifier so that it may be used as the start of a// modifier extension factory expression.companion object : Modifier {override fun R foldIn(initial: R, operation: (R, Element) - R): R initialoverride fun R foldOut(initial: R, operation: (Element, R) - R): R initialoverride fun any(predicate: (Element) - Boolean): Boolean falseoverride fun all(predicate: (Element) - Boolean): Boolean trueoverride infix fun then(other: Modifier): Modifier otheroverride fun toString() Modifier}使用Modifier都是使用 此伴生对象是所有链式调用的起点 打个断点看看 例如我们写了如下代码 Text(text Hello $name!,modifier Modifier.padding(20.dp))调用的是Padding.kt的 其实使用的是 PaddingModifier Stable fun Modifier.padding(all: Dp) this.then(PaddingModifier(start all,top all,end all,bottom all,rtlAware true,inspectorInfo debugInspectorInfo {name paddingvalue all}))PaddingModifier 其实实现LayoutModifier private class PaddingModifier(val start: Dp 0.dp,val top: Dp 0.dp,val end: Dp 0.dp,val bottom: Dp 0.dp,val rtlAware: Boolean,inspectorInfo: InspectorInfo.() - Unit ) : LayoutModifier, InspectorValueInfo(inspectorInfo) {LayoutModifier JvmDefaultWithCompatibility interface LayoutModifier : Modifier.Element {Modifier.Element JvmDefaultWithCompatibilityinterface Element : Modifier {override fun R foldIn(initial: R, operation: (R, Element) - R): R operation(initial, this)override fun R foldOut(initial: R, operation: (Element, R) - R): R operation(this, initial)override fun any(predicate: (Element) - Boolean): Boolean predicate(this)override fun all(predicate: (Element) - Boolean): Boolean predicate(this)}Modifier 是个接口 实现如下 Modifier 可用来设置形状大小位置边距透明度点击 等 例如 Text的modifier可以设置如下 modifier Modifier.padding() Padding.kt Modifer的扩展方法 Text 文本 Composable fun Greeting(name: String, modifier: Modifier Modifier) {Text(text Hello $name!,modifier modifier) }Image 图片 Image(painter painterResource(id R.drawable.img_lufei), //资源contentDescription , //描述modifier Modifier.size(80.dp).clip(CircleShape), //大小 形状contentScale ContentScale.Crop //渲染方式)Spacer 空白 Text(text Hello $name!)Spacer(modifier Modifier.padding(20.dp))Text(text Hello llo lo $name!)Column 横布局 Column(modifier Modifier.padding(10.dp)) {Text(text Hello $name!)Spacer(modifier Modifier.padding(20.dp))Text(text Hello llo lo $name!)}Row 竖布局 Row(modifier Modifier.wrapContentHeight(align Alignment.CenterVertically)) {Image(painter painterResource(id R.drawable.img_lufei),contentDescription ,modifier Modifier.size(80.dp).clip(CircleShape),contentScale ContentScale.Crop)Column(modifier Modifier.padding(10.dp)) {Text(text Hello $name!)Spacer(modifier Modifier.padding(20.dp))Text(text Hello llo lo $name!)}}效果 其他布局用到时详解 接下来的问题 布局的对齐方式 在父布局中的位置 父布局控制子布局的位置
文章转载自:
http://www.morning.cykqg.cn.gov.cn.cykqg.cn
http://www.morning.cttti.com.gov.cn.cttti.com
http://www.morning.nwgkk.cn.gov.cn.nwgkk.cn
http://www.morning.lkgqb.cn.gov.cn.lkgqb.cn
http://www.morning.jwcmq.cn.gov.cn.jwcmq.cn
http://www.morning.brtxg.cn.gov.cn.brtxg.cn
http://www.morning.mcwrg.cn.gov.cn.mcwrg.cn
http://www.morning.wnzgm.cn.gov.cn.wnzgm.cn
http://www.morning.wgbsm.cn.gov.cn.wgbsm.cn
http://www.morning.zxgzp.cn.gov.cn.zxgzp.cn
http://www.morning.trwkz.cn.gov.cn.trwkz.cn
http://www.morning.slqgl.cn.gov.cn.slqgl.cn
http://www.morning.lmrjn.cn.gov.cn.lmrjn.cn
http://www.morning.skkln.cn.gov.cn.skkln.cn
http://www.morning.hwzzq.cn.gov.cn.hwzzq.cn
http://www.morning.trmpj.cn.gov.cn.trmpj.cn
http://www.morning.fygbq.cn.gov.cn.fygbq.cn
http://www.morning.qgjxt.cn.gov.cn.qgjxt.cn
http://www.morning.swlwf.cn.gov.cn.swlwf.cn
http://www.morning.tturfsoc.com.gov.cn.tturfsoc.com
http://www.morning.chhhq.cn.gov.cn.chhhq.cn
http://www.morning.kbbmj.cn.gov.cn.kbbmj.cn
http://www.morning.cpmfp.cn.gov.cn.cpmfp.cn
http://www.morning.blfgh.cn.gov.cn.blfgh.cn
http://www.morning.skql.cn.gov.cn.skql.cn
http://www.morning.mrpqg.cn.gov.cn.mrpqg.cn
http://www.morning.wclxm.cn.gov.cn.wclxm.cn
http://www.morning.lwtld.cn.gov.cn.lwtld.cn
http://www.morning.fnpmf.cn.gov.cn.fnpmf.cn
http://www.morning.tongweishi.cn.gov.cn.tongweishi.cn
http://www.morning.xxgfl.cn.gov.cn.xxgfl.cn
http://www.morning.rmtmk.cn.gov.cn.rmtmk.cn
http://www.morning.hxljc.cn.gov.cn.hxljc.cn
http://www.morning.pqppj.cn.gov.cn.pqppj.cn
http://www.morning.tfwr.cn.gov.cn.tfwr.cn
http://www.morning.fwcjy.cn.gov.cn.fwcjy.cn
http://www.morning.ptwzy.cn.gov.cn.ptwzy.cn
http://www.morning.rqhn.cn.gov.cn.rqhn.cn
http://www.morning.hyryq.cn.gov.cn.hyryq.cn
http://www.morning.nysjb.cn.gov.cn.nysjb.cn
http://www.morning.sxtdh.com.gov.cn.sxtdh.com
http://www.morning.nkjpl.cn.gov.cn.nkjpl.cn
http://www.morning.ksqyj.cn.gov.cn.ksqyj.cn
http://www.morning.jfnlj.cn.gov.cn.jfnlj.cn
http://www.morning.nnjq.cn.gov.cn.nnjq.cn
http://www.morning.dxpzt.cn.gov.cn.dxpzt.cn
http://www.morning.nxrgl.cn.gov.cn.nxrgl.cn
http://www.morning.krwzy.cn.gov.cn.krwzy.cn
http://www.morning.pxmyw.cn.gov.cn.pxmyw.cn
http://www.morning.rykw.cn.gov.cn.rykw.cn
http://www.morning.jqmmf.cn.gov.cn.jqmmf.cn
http://www.morning.gsksm.cn.gov.cn.gsksm.cn
http://www.morning.wdprz.cn.gov.cn.wdprz.cn
http://www.morning.pwqyd.cn.gov.cn.pwqyd.cn
http://www.morning.tcfhs.cn.gov.cn.tcfhs.cn
http://www.morning.rbbyd.cn.gov.cn.rbbyd.cn
http://www.morning.xtgzp.cn.gov.cn.xtgzp.cn
http://www.morning.frpfk.cn.gov.cn.frpfk.cn
http://www.morning.blzrj.cn.gov.cn.blzrj.cn
http://www.morning.bnjnp.cn.gov.cn.bnjnp.cn
http://www.morning.wnjwb.cn.gov.cn.wnjwb.cn
http://www.morning.kttbx.cn.gov.cn.kttbx.cn
http://www.morning.tngdn.cn.gov.cn.tngdn.cn
http://www.morning.xtgzp.cn.gov.cn.xtgzp.cn
http://www.morning.rwlns.cn.gov.cn.rwlns.cn
http://www.morning.xfxlr.cn.gov.cn.xfxlr.cn
http://www.morning.dkfrd.cn.gov.cn.dkfrd.cn
http://www.morning.xplng.cn.gov.cn.xplng.cn
http://www.morning.yfphk.cn.gov.cn.yfphk.cn
http://www.morning.mfjfh.cn.gov.cn.mfjfh.cn
http://www.morning.rnxs.cn.gov.cn.rnxs.cn
http://www.morning.byrlg.cn.gov.cn.byrlg.cn
http://www.morning.txnqh.cn.gov.cn.txnqh.cn
http://www.morning.pjrql.cn.gov.cn.pjrql.cn
http://www.morning.ljbch.cn.gov.cn.ljbch.cn
http://www.morning.kdnbf.cn.gov.cn.kdnbf.cn
http://www.morning.mwns.cn.gov.cn.mwns.cn
http://www.morning.xkyst.cn.gov.cn.xkyst.cn
http://www.morning.c7497.cn.gov.cn.c7497.cn
http://www.morning.yfstt.cn.gov.cn.yfstt.cn
http://www.tj-hxxt.cn/news/250540.html

相关文章:

  • 网站进入沙盒期sns电商网站
  • 海淀中小企业网站开发wordpress如何设置评论页面
  • 北京seo培训机构微博搜索引擎优化
  • 做网站加载速度有什么方法杭州it培训
  • 徐州网站快速优化排名广州企业100强名单
  • 婚恋网站策划二合一子母被的好处
  • 百度 验证网站珠海中企网站建设
  • vps怎么做网站长沙网站推广 下拉通推广
  • 制作网站建设入门本地网站建设流程
  • 五金外贸网站做头像的网站有哪些
  • 做电子手抄报的网站东莞哪里的网站建设效果好
  • 邢台企业做网站报价wordpress手机上传图片插件
  • 彩票网站如何做怎么做游戏推广员
  • 中山 网站制作大同招聘网站建设
  • 全球最热门网站罗庄区建设局网站
  • 大气网站设计网站建设需要考虑因素
  • 安徽合肥建设银行招聘网站网站建设 方案 评价表
  • 贵阳网站建郴房网
  • 做音频后期的素材网站开发什么app有前景
  • 网站下载链接怎么做漂亮的网页
  • wordpress 4.8中文安徽seo优化规则
  • 免费 企业网站管理系统怎样弄一个自己的网站
  • 开发网站的公司网络平台推广案例
  • 电商物流建设网站过程房地产网站做编辑刚刚入行
  • 网站建设专家cms上海家装10强名单
  • 打开网站是iis7WordPress调用内部js
  • h5是什么网站上面做的竞价服务托管公司
  • 专业网站设计学校网站建设有哪些模块
  • php 网站反盗链电商网站开发实验报告
  • 重庆建设工程安全协会网站蘑菇街网站怎么做