嗨,我尝试集成MaterialComponentsXamarin,以便在其中动态生成文本框,我已经应用了以下代码,但是当我将文本框聚焦时我看不到浮动标签
TextField text = new TextField();
text.Placeholder = "this is floating label";
答案 0 :(得分:0)
您需要通过引用您的TextInputController
实例化TextField
对象之一。
例如:
var _ = new TextInputControllerOutlined(text);
原始的快速教程显示了这一点:https://codelabs.developers.google.com/codelabs/mdc-101-swift/#2