我正在使用Flutter的Formfield小部件 https://pub.dartlang.org/packages/datetime_picker_formfield
但是,我想将用户输入的日期返回到我以前的窗口小部件(addReminder),但是无法做到这一点。
我尝试将其放在静态变量中并对其进行访问,但没有成功,我对dart不满意,因此无法使类具有可通过初始化小部件作为对象使用的互变量带有特定变量
并尝试通过getter获取变量,但没有成功。
调用类dateTime的父窗口小部件:
class addReminder extends StatelessWidget{
dateTimeWidget = new dateTime();
DateTime date;
@override
Widget build(BuildContext context){
return Scaffold(
appBar: AppBar(
title: Text('Add a Reminder'),
),
body:
new Container(
padding: new EdgeInsets.all(20.0),
child: new Form(
child: new ListView(
children: <Widget>[
new TextFormField(
keyboardType: TextInputType.text, // Use email input type for emails.
decoration: new InputDecoration(
hintText: 'Title of reminder',
),
),
dateTimeWidget,
RaisedButton(
child: Text('Save'),
onPressed:(){
//This is where I want to extract the date and save it to a local variable (date in this case)
Navigator.pop(context);
},
)
],
),
),
),
);
} }
同时使用“ DateTimePickerFormField”和日期和状态类的DateTime小部件:
import 'package:flutter/material.dart';
import 'package:datetime_picker_formfield/datetime_picker_formfield.dart';
import 'package:intl/intl.dart';
class dateTime extends StatefulWidget{
@override
dateTimeState createState() => dateTimeState();
}
class dateTimeState extends State<dateTime>{
static DateTime dateT;
InputType inputType = InputType.both;
final formats = {
InputType.both: DateFormat("EEEE, MMMM d, yyyy 'at' h:mma"),
InputType.date: DateFormat('yyyy-MM-dd'),
InputType.time: DateFormat("HH:mm"),
};
Widget build(BuildContext context) => Container(
child: DateTimePickerFormField(
inputType: InputType.both,
editable: true,
format: formats[inputType],
decoration: InputDecoration(
labelText: 'Date/Time', hasFloatingPlaceholder: false),
onChanged: (dt) => setState(() => dateT = dt),
)
);
}
我后来尝试这样做:
将此方法添加到addReminder类中:
dateTimee(BuildContext context) async {
final result = await Navigator.push(
context,
MaterialPageRoute(builder: (context)=> dateTime()),
);
}
并这样称呼:
dateTimee(context),
以及在我添加的onchanged参数的dateTime类中
onChanged: (dt) {
setState(() => dateT = dt);
Navigator.of(context).pop(dateT);
},
但是我得到了错误:
I/flutter (18662): Another exception was thrown:
'package:flutter/src/widgets/navigator.dart': Failed assertion: line1995
pos 12: '!_debugLocked': is not true.
我认为这是因为该方法属于Future类型,因此应调用小部件 所以我不知道该怎么办 我正在调用的小部件dateTimee基于调用小部件dateTimePickerFromField
答案 0 :(得分:0)
看看食谱https://flutter.io/docs/cookbook/navigation/returning-data
总而言之:Navigator.push
返回的将来将在推送的小部件调用Navigator.pop
时完成。您可以将返回值传递给pop
来作为将来解决的值。
// In widget 1..
final result = await Navigator.of(context).push(...);
// In widget 2..
Navigator.of(context).pop('output');
然后,一旦小部件2调用pop,将完成小部件1等待的未来,并将result
变量分配给'output'
字符串。