A non-null String must be provided to a Text widget

前端 未结 9 1708
醉酒成梦
醉酒成梦 2021-02-13 20:15

I\'m trying to add the option for the quantity to be adjusted but I get an error saying \"A non-null String must be provided to a Text widget\" How do I provide this, to this co

9条回答
  •  自闭症患者
    2021-02-13 20:54

    Just check for null and give a default

    Text(cart_prod_qty!=null?cart_prod_qty:'default value'),
    

    You can keep it empty if you wish

    Text(cart_prod_qty!=null?cart_prod_qty:''),
    

    Or else you can make text widget optional

    cart_prod_qty!=null? Text(cart_prod_qty): Container()
    

提交回复
热议问题