Setstate() 无法更新 AlertDialog 内的 suffixIcon? - 颤振

Setstate() not working to update suffixIcon inside AlertDialog ? - Flutter

我正在尝试为 TextFormField 的 InputDecoration 更新 Form 中的 suffixIcon,以通过 onChange 函数检查给定字符串的长度,但没有更新。另外,我在 Textcontroller 上进行了测试,以便在长度 >= 8 时赋予它价值,我希望我能对这个问题给出一个好主意。提前感谢您的解决方案。

import 'package:flutter/material.dart';

bulidDialogChangePass() {
  return DialogPass();
}

class DialogPass extends StatefulWidget {
  const DialogPass({Key? key}) : super(key: key);

  @override
  State<StatefulWidget> createState() {
    return DialogPassState();
  }
}

class DialogPassState extends State<DialogPass> {
  TextEditingController _fPasswordValue = TextEditingController();
  TextEditingController _sPasswordValue = TextEditingController();
  final _formKey = GlobalKey<FormState>();
  ValueChanged<String>? onChanged;
  bool _showIcons = false;
  bool _startValidateFPass = false;
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Padding(
      padding: const EdgeInsets.only(bottom: 25.0),
      child: Wrap(
        children: [
          Container(
            child: Row(
              children: [
                Text("Password :"),
                TextButton(
                  onPressed: () {
                    _showDialog(context);
                  },
                  child: Wrap(
                    direction: Axis.vertical,
                    alignment: WrapAlignment.end,
                    children: [Text("Change")],
                  ),
                )
              ],
            ),
          ),
        ],
      ),
    );
  }

  _showDialog(BuildContext context) async {
    var size = MediaQuery.of(context).size;
    return await showDialog(
        context: context,
        builder: (BuildContext context) {
          return AlertDialog(
            content: Stack(
              clipBehavior: Clip.none,
              children: <Widget>[
                Form(
                  key: _formKey,
                  child: Column(
                    mainAxisSize: MainAxisSize.min,
                    children: <Widget>[
                      Padding(
                        padding: EdgeInsets.all(8.0),
                        child: TextFormField(
                          controller: _fPasswordValue,
                          onChanged: (value) {_onChange(_fPasswordValue.text);},
                          decoration: InputDecoration(
                            labelText: "New Password",
                            suffixIcon: _showIcons && _startValidateFPass ?  _setIcon() :null,
                          ),
                        ),
                      ),
                      Padding(
                        padding: EdgeInsets.all(8.0),
                        child: TextFormField(
                          controller: _sPasswordValue,
                          decoration: InputDecoration(
                            labelText: "Confirm Password",
                            suffixIcon: _showIcons && _startValidateFPass ?  _setIcon() :null, // I will change to check aothers soon 
                          ),
                        ),
                      ),
                      Padding(
                        padding: const EdgeInsets.all(8.0),
                        child: Wrap(
                          children: [
                            OutlinedButton(
                              style: OutlinedButton.styleFrom(
                                fixedSize: Size(size.width / 2 - 10, 20),
                                padding: EdgeInsets.symmetric(horizontal: 50),
                                shape: RoundedRectangleBorder(
                                    borderRadius: BorderRadius.circular(20)),
                              ),
                              onPressed: () {},
                              child: Text("CANCEL",
                                  style: TextStyle(
                                      fontSize: 14,
                                      letterSpacing: 2.2,
                                      color: Colors.black)),
                            ),
                            OutlinedButton(
                              style: OutlinedButton.styleFrom(
                                fixedSize: Size(size.width / 2 - 10, 20),
                                backgroundColor: Colors.blue[400],
                                primary: Colors.black,
                                padding: EdgeInsets.symmetric(horizontal: 50),
                                shape: RoundedRectangleBorder(
                                    borderRadius: BorderRadius.circular(20)),
                              ),
                              onPressed: () {},
                              child: Text("Save",
                                  style: TextStyle(
                                      fontSize: 14,
                                      letterSpacing: 2.2,
                                      color: Colors.black)),
                            ),
                          ],
                        ),
                      ),
                    ],
                  ),
                ),
              ],
            ),
          );
        });
  }

  _onChange(String value) {
    setState(() {
      _startValidateFPass = true;
      if (value.length >= 8) {
        _sPasswordValue.text = "test"; // test to check setState
        _showIcons = true;
      }
    });
  }
  Icon _setIcon() {
    Icon icon;
    if(_showIcons){
      _sPasswordValue.text = "test"; // test to check setState
      print('dfsdfsd');
      icon = Icon(
        Icons.done_all,
        color: Colors.green,
      );
    }else{
      icon = Icon(
        Icons.highlight_off,
        color: Colors.red,
      );
    }
    return icon;
  }
}

创建另一个有状态的小部件并将 Alertdialog 作为其子项或使用有状态的构建器来完成此操作

    showDialog(
  context: context,
  builder: (context) {
    String contentText = "Your Dialog";
    return StatefulBuilder(
      builder: (context, setState) {
        return AlertDialog(
          title: Text("Title"),
          content: Text(contentText),
          actions: <Widget>[
            TextButton(
              onPressed: () => Navigator.pop(context),
              child: Text("Cancel"),
            ),
            TextButton(
              onPressed: () {
                setState(() {
                  contentText = "Changed state";
                });
              },
              child: Text("Change"),
            ),
          ],
        );
      },
    );
  },
);