我实现了一个值侦听器,但它不工作。
ValueListenableBuilder<TextEditingValue>(
valueListenable: passwordcontroller,
builder: (context, value, child) {
return Center(
child: TextButton(
onPressed: value.text.isEmpty ? null : null,
child: const Text(
"Sign In",
style: TextStyle(
fontSize: 17,
fontFamily: "San Francisco Bold",
color: Colors.blue,
fontWeight: FontWeight.w500),
),
),
);
}
),
1条答案
按热度按时间ldfqzlk81#
哦,问题是你覆盖了样式。试着把你的
TextStyle
.color
改为:然后,
TextButton
将按照您的期望使用应用程序的主题进行样式设置