0

ドロップダウン ボタンを定義した StatefulWidget クラス Customdropdownbutton の下


class Customdropdownbutton extends StatefulWidget {
  Customdropdownbutton({@required this.defaultValue, @required this.listValue, this.enable});
  String defaultValue;
  List<String> listValue;
  bool enable;
  
  @override
  _CustomdropdownbuttonState createState() => _CustomdropdownbuttonState();
}

class _CustomdropdownbuttonState extends State<Customdropdownbutton> {
  @override
  Widget build(BuildContext context) {
    
    String _valore;
    return DropdownButton<String>(
      value: widget.defaultValue.isEmpty ?  widget.listValue[0] : _valore, 
      icon: const Icon(Icons.arrow_downward),
      iconSize: 24,
      elevation: 16,
      style: const TextStyle(color: Colors.deepPurple),
      underline: Container(
        height: 2,
        color: Colors.deepPurpleAccent,
      ),
      
      onChanged: widget.enable ? (String newValue) {
        setState(() {
          _valore = newValue;
        });
      } : null,
      items: widget.listValue.map<DropdownMenuItem<String>>((String value) {
        return DropdownMenuItem<String>(
          value: value,
          child: Text(value),
        );
      }).toList(),
    );
  }
}

以下では、クラス Customdropdownbutton をインスタンス化しようとしています。UI にドロップダウン ボタンが表示されますが、値を変更できません (選択されたテキストは常に widget.listValue[0] です)。


class MyMain extends StatefulWidget {

@override
  Widget build(BuildContext context) {
    final auth = Provider.of<AuthBase>(context, listen: false);
    final String emailMy = auth.currentUser.email;
    return scaffold(
      .....
      body: _buildFormChildren(emailMy),
  }

   List<Widget> _buildFormChildren(String emailMy) {
    List<String> listValue = ['1a', '2b'];
    String defaultValue = '1a';
    bool enable = true;
    return [
     **Customdropdownbutton(defaultValue: '', listValue : listValue, enable: true, ),**
    ],
  
  ....
  }
}

4

1 に答える 1