PrimarySurface 的 Material3 替代品
我已经开始用新的 Material3 样式(Material You)替换样式,这些样式存在于最新的 Material Design 组件库中。但是,我没有看到 Widget.MaterialComponents.Toolbar.PrimarySurface
的替代品(一种通过不使用看起来很亮的原色来更好地处理暗模式的样式)。有 Widget.Material3.Toolbar
、Widget.Material3.Toolbar.Surface
和 Widget.Material3.Toolbar.OnSurface
但我不认为有其中有一个是替代品。
我在这里错过了什么吗?
I've started to replace styles with the new Material3 ones (Material You) which are present in the latest Material Design Components library. However, I don't see a replacement for Widget.MaterialComponents.Toolbar.PrimarySurface
(a style that handles dark mode better by not using the primary color, which looks to bright). There's Widget.Material3.Toolbar
, Widget.Material3.Toolbar.Surface
and Widget.Material3.Toolbar.OnSurface
but I don't think any of them is a replacement.
Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Widget.MaterialComponents.Toolbar.PrimarySurface
样式只是Widget.MaterialComponents.Toolbar.Primary
和Widget.MaterialComponents.Toolbar.Surface
样式的组合适用于浅色和深色模式。这意味着此样式在浅色模式下使用 colorPrimary,在深色模式下使用 colorSurface。
在Material 3(Material you)中,工具栏的默认背景颜色从colorPrimary更改为colorSurface。
您始终可以根据自己的喜好自定义这 3 个材料主题。
Widget.MaterialComponents.Toolbar.PrimarySurface
style is just a combination ofWidget.MaterialComponents.Toolbar.Primary
andWidget.MaterialComponents.Toolbar.Surface
styles for light and dark mode.That means this style uses colorPrimary in light mode and colorSurface in dark mode.
In the Material 3 (Material you) , the default background color for the toolbar is changed from colorPrimary to colorSurface.
You can always customize these material 3 themes according to your preference.