ComposeUI Card

简介: ComposeUI Card使用避坑

学习笔记:


注意:卡片布局,不要在Modifier设置背景,否则四角会有阴影,无法去掉


      Card(
           // 卡片布局,不要在Modifier设置背景,否则四角会有阴影,无法去掉
           modifier = Modifier
               .fillMaxWidth()
                .fillMaxHeight(),

            colors = CardDefaults.cardColors(
                  containerColor = Color(0xFFF5F7FA), // 自定义背景颜色
                ),
            shape = RoundedCornerShape(8.dp),
            elevation = CardDefaults.elevatedCardElevation(defaultElevation = 0.dp)
     ){
        // 布局内容......
    }
相关文章
|
8月前
|
前端开发 JavaScript
Class 与 Style 绑定1
Class 与 Style 绑定1
|
8月前
|
前端开发
解决el-descriptions的label-class-name不生效问题
解决el-descriptions的label-class-name不生效问题
1017 0
|
8月前
input type="button"和button的区别
input type="button"和button的区别
|
8月前
|
前端开发
|
JavaScript 前端开发 索引
|
前端开发
elementui源码学习之仿写一个el-card
elementui源码学习之仿写一个el-card
279 0
|
前端开发 JavaScript
class与style绑定
class与style绑定
113 0
【1153】Decode Registration Card of PAT (25分)
【1153】Decode Registration Card of PAT (25分) 【1153】Decode Registration Card of PAT (25分)
129 0
|
JavaScript 前端开发
input type="button" 和button区别
来源: https://www.jianshu.com/p/687aabeedae5 在一个页面上画一个按钮,有四种办法: 1、 这就是一个按钮。
1483 0