Flutter: значение PopUp Form показывает ноль

Я новичок в трепете. В моем проекте мне нужно показывать всплывающее окно, когда я загружаю свою страницу. Итак, я использовал WidgetsBindingin initstate(). Мой код отлично работает для отображения всплывающего окна при загрузке страницы, но в этом всплывающем окне есть текстовое поле для ввода номера мобильного телефона после отправки, мне нужно получить этот номер телефона, но он не показывает значение. При компиляции он показывает нулевое значение.

 @override
  void initState() {
super.initState();

// _fetchSessionAndNavigate();
WidgetsBinding.instance.addPostFrameCallback((_) async {
  await showDialog<String>(
    context: context,
    builder: (BuildContext context) => new AlertDialog(
      content: Stack(
        overflow: Overflow.visible,
        children: <Widget>[
          Positioned(
            right: -40.0,
            top: -40.0,
            child: InkResponse(
              onTap: () {
                Navigator.of(context).pop();
              },
              child: CircleAvatar(
                child: Icon(Icons.close),
                backgroundColor: Colors.red,
              ),
            ),
          ),
          Form(
            key: _formKey,
            child: Column(
              mainAxisSize: MainAxisSize.min,
              children: <Widget>[
                Padding(
                  padding: EdgeInsets.all(8.0),
                  child: TextFormField(
                    keyboardType: TextInputType.number,
                    maxLines: 1,
                    obscureText: true,
                    autofocus: false,
                    decoration: new InputDecoration(
                        hintText: 'Enter Mobile Number',
                        icon: new Icon(
                          Icons.phone_iphone,
                          color: Colors.grey,
                        )),
                    validator: (value) => value.isEmpty
                        ? 'Phone Number can\'t be empty'
                        : null,
                    onSaved: (value) => phoneNumber = value.trim();
                  ),
                ),
                Padding(
                  padding: const EdgeInsets.all(8.0),
                  child: RaisedButton(
                    child: Text("Register Your Device"),
                    onPressed: () {
                      if (_formKey.currentState.validate()) {
                        //_formKey.currentState.save();
                        Print (_phoneNumber); //NEED TO GET ENTERED VALUE HERE
                      }
                    },
                  ),
                )
              ],
            ),
          ),
        ],
      ),
    ),
  );
});

}

1 ответ

Вы можете удалить ключевое слово await перед функцией и вызвать его так:

showDialog({the dialog}).then((dialogResult){
   setState((){
      yourLocalVariable = dialogResult;
   });
});
Другие вопросы по тегам