Flutter 앱에는 기록 목록과 기록 생성 및 편집을위한 화면이 있습니다.
두 번째 화면에 개체를 전달하면 편집 할 것임을 의미하고 null을 전달하면 새 항목을 만들고 있음을 의미합니다. 편집 화면은 Stateful 위젯이며 제 경우에 https://flutter.io/cookbook/navigation/passing-data/ 접근 방식을 사용하는 방법을 잘 모르겠습니다 .
class RecordPage extends StatefulWidget {
final Record recordObject;
RecordPage({Key key, @required this.recordObject}) : super(key: key);
@override
_RecordPageState createState() => new _RecordPageState();
}
class _RecordPageState extends State<RecordPage> {
@override
Widget build(BuildContext context) {
//.....
}
}
_RecordPageState 내에서 recordObject에 어떻게 액세스 할 수 있습니까?
1
Stateful 위젯에 데이터 전달의
—
Herohtar
_RecordPageState 클래스의 함수에서 'recordObject'변수 값을 어떻게 사용할 수 있습니까?
—
Kamlesh
이것이 귀하의 질문에 대답합니까? 생성자를 사용하지 않고 StatefulWidget 데이터를 State 클래스에 전달
—
Blasanka