如何在 AngularDart Material 组件中设置提示文本颜色?
How to set hint text color in AngularDart Material Components?
我想在 material-input component in Angular Dart material components -
中设置提示文本颜色
https://dart-lang.github.io/angular_components/#/material_input.
怎么做?
似乎也没有任何 mixin 可以改变颜色。
你可以自己做:
material-input ::ng-deep .hint-text {
color: blue;
}
对于 Google 代码库,我们需要 mixin,最好也从外部使用它,因为它们会在发布时更新,但如果我们没有您需要的,您可以随时作弊自己更新值。
对于颜色,我们似乎只有 material-input-theme 可以让您进行一些颜色更改。我认为这是 Google 的大多数团队所需要的全部灵活性。
我想在 material-input component in Angular Dart material components -
中设置提示文本颜色https://dart-lang.github.io/angular_components/#/material_input.
怎么做?
似乎也没有任何 mixin 可以改变颜色。
你可以自己做:
material-input ::ng-deep .hint-text {
color: blue;
}
对于 Google 代码库,我们需要 mixin,最好也从外部使用它,因为它们会在发布时更新,但如果我们没有您需要的,您可以随时作弊自己更新值。
对于颜色,我们似乎只有 material-input-theme 可以让您进行一些颜色更改。我认为这是 Google 的大多数团队所需要的全部灵活性。