У меня есть текстовое поле и отдельная кнопка, я хочу изменить цвет кнопки, когда текстовое поле фокусируется.
Наивно, я хотел бы написать: FlatButton(..., backgroundColor: myFocusNode.hasFocus ? Colors.red : Colors.green)
. Это, конечно, не работает, поскольку Button не получает уведомления об изменении фокуса. В качестве альтернативы я попытался добавить Listener
к myFocusNode
, но если я попытаюсь вызвать setState
внутри него, чтобы восстановить кнопку, текстовое поле снова потеряет фокус.
Я изменил пример кода из соответствующей кулинарной книги для иллюстрации, вы можете скопировать приведенный ниже код, вставить и запустить, чтобы увидеть, что я имею в виду. Как сделать, чтобы кнопка становилась красной при нажатии на текстовое поле?
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Text Field Focus',
home: MyCustomForm(),
);
}
}
// Define a custom Form widget.
class MyCustomForm extends StatefulWidget {
@override
_MyCustomFormState createState() => _MyCustomFormState();
}
// Define a corresponding State class.
// This class holds data related to the form.
class _MyCustomFormState extends State<MyCustomForm> {
// Define the focus node. To manage the lifecycle, create the FocusNode in
// the initState method, and clean it up in the dispose method.
FocusNode myFocusNode;
@override
void initState() {
super.initState();
myFocusNode = FocusNode();
}
@override
void dispose() {
// Clean up the focus node when the Form is disposed.
myFocusNode.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Text Field Focus'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
// The first text field is focused on as soon as the app starts.
TextField(
autofocus: true,
),
// The second text field is focused on when a user taps the
// FloatingActionButton.
TextField(
focusNode: myFocusNode,
),
],
),
),
floatingActionButton: FloatingActionButton(
// When the button is pressed,
// give focus to the text field using myFocusNode.
onPressed: () => myFocusNode.requestFocus(),
tooltip: 'Focus Second Text Field',
backgroundColor: myFocusNode.hasFocus ? Colors.red : Colors.green,
child: Icon(Icons.edit),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}