简体   繁体   English

在 Flutter 中使用 Visibility Widget 来切换小部件的显示

[英]Using Visibility Widget in Flutter to toggle widgets display

I have a Column widget I'd only like to make visible when a user taps on the add new button.我有一个列小部件,我只想在用户点击添加新按钮时使其可见。 I am using the Visibility widget Flutter provides and I am using setState() to change the visible property in the Visibility widget class.我正在使用 Flutter 提供的Visibility 小部件,并使用 setState() 更改 Visibility 小部件类中的可见属性。 It doesn't work.它不起作用。

What could I be overlooking?我可以忽略什么? Find my code snippet below:在下面找到我的代码片段:

bool _addNewTax = false;

FlatButton.icon(
    color: kBgCircleColour,
    padding: EdgeInsets.all(15.0),
    icon: Icon(
      FontAwesomeIcons.plusSquare,
      color: kThemeStyleButtonFillColour,
    ),
    onPressed: () {
      setState(() {
        _addNewTax = true;
      });
        Visibility(
          visible: _addNewTax,
          child: _buildTaxInputFields(),
        );
    },
    label: Text(
      'Add new tax',
      style: kRegularTextStyle,
    ),
  );

My _buildTaxInputFields function as below:我的 _buildTaxInputFields 函数如下:

      _buildTaxInputFields() {
        return Column(
          children: <Widget>[
            Padding(
              padding: const EdgeInsets.all(20.0),
              child: TextFormField(
                initialValue: inputValue,
                textAlign: TextAlign.left,
                onSaved: () {},
                decoration: kTextFieldDecoration.copyWith(hintText: 'tax name e.g. VAT, service charge, etc'),
                ),
            Padding(
              padding: const EdgeInsets.all(20.0),
              child: TextFormField(
                initialValue: inputValue,
                textAlign: TextAlign.left,
                onSaved: () {},
                decoration: kTextFieldDecoration.copyWith(hintText: 'tax percentage e.g. 20, 19.5'),
                ),
            Row(
              children: <Widget>[
                Expanded(
                  flex: 1,
                  child: RadioListTile(
                    title: Text('I\'ll bear it '),
                    value: TaxBearer.merchant,
                    groupValue: _taxBearer,
                    onChanged: (TaxBearer value) {
                      setState(() {
                        _taxBearer = value;
                      });
                    },
                  ),
                ),
                Expanded(
                  flex: 1,
                  child: RadioListTile(
                      title: Text('Push to customer'),
                      value: TaxBearer.customer,
                      groupValue: _taxBearer,
                      onChanged: (TaxBearer value) {
                        setState(() {
                          _taxBearer = value;
                        });
                      }),
                ),
              ],
            ),
          ],
        );
      }

Your visibility widget will never be rendered because you're generating it in the onPressed method of a button.您的可见性小部件将永远不会被呈现,因为您是在按钮的 onPressed 方法中生成它的。 You could use a column to generate it below the button like this:您可以使用一列在按钮下方生成它,如下所示:

bool _addNewTax = false;
Column(
  children: [
   FlatButton.icon(
    color: kBgCircleColour,
    padding: EdgeInsets.all(15.0),
    icon: Icon(
      FontAwesomeIcons.plusSquare,
      color: kThemeStyleButtonFillColour,
    ),
    onPressed: () {
      setState(() {
        _addNewTax = true;
      });
    },
    label: Text(
      'Add new tax',
      style: kRegularTextStyle,
    ),
  ),
  Visibility(
    visible: _addNewTax,
    child: _buildTaxInputFields(),
  ),
 ],
);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM