Как показать другой виджет в showModel при нажатии кнопки

Я пытаюсь показать showModelBottomSheet(), и он отлично работает, в bottomSheet есть кнопка, поэтому всякий раз, когда я нажимал эту кнопку, она показывает / возвращает новый контейнер (контейнер с разными виджетами). На этом onTap () я установил переменная bool принимает значение true или false... но не работает. setState(()); Метод Не работает в ModelBottomSheet? и аналогичный случай с showGeneralDialog()... Как я могу исправить и то, и другое.

bool p=true;
showModalBottomSheet(
  backgroundColor: Colors.transparent,
    enableDrag: true,
    isScrollControlled: true,
    context: context, builder: (BuildContext context){

  return p==true?Container(
    width: MediaQuery.of(context).size.width,
    height: MediaQuery.of(context).size.height/2,
    padding: EdgeInsets.all(5.0),
    decoration: BoxDecoration(
      color: Theme.of(context).primaryColor,
      borderRadius: BorderRadius.only(topLeft: Radius.circular(20.0),topRight: Radius.circular(20.0)),
    ),
    child: Column(
      children: <Widget>[
        Container(
          alignment: Alignment.topLeft,
          width: MediaQuery.of(context).size.width,
          height: 30.0,
          child: IconButton(icon: Icon(Icons.arrow_downward,color: Colors.white,size: 32.0,), onPressed: (){
            Navigator.pop(context);
          }),
        ),

        Text(widget.model.cName,style: TextStyle(color: Colors.white,fontWeight: FontWeight.bold,fontSize: 25.0,fontFamily: 'Rajdhani'),),

        SizedBox(height: 10.0,),
        Text('AMOUNT',style: TextStyle(color: Colors.white60,fontWeight: FontWeight.w100,fontSize: 12.0),),

        SizedBox(height: 20.0,),
        Text(widget.model.b,style: TextStyle(color: Colors.white,fontWeight: FontWeight.w600,fontSize: 32.0,fontFamily: 'Rajdhani'),),

        SizedBox(height: 10.0,),
        Text('REPEAT',style: TextStyle(color: Colors.white60,fontWeight: FontWeight.bold,fontSize: 12.0,fontFamily: 'Rajdhani'),),
        SizedBox(height: 15.0,),
        Text('EVERY MONTH AT   '+widget.model.date,style: TextStyle(color: Colors.white,fontWeight: FontWeight.w600,fontSize: 20.0,fontFamily: 'Rajdhani'),),


        SizedBox(height: 20.0,),
        GestureDetector(
          onTap: (){
            pay=false;
            print('ayeeee $p');
          },
          child: Container(
            alignment: Alignment.bottomCenter,
            width: MediaQuery.of(context).size.width*0.8,
            height: 40.0,
            decoration: BoxDecoration(color: Colors.white,
              borderRadius: BorderRadius.circular(10.0),
            ),
            child: Center(
              child: Text('P ',style: TextStyle(color: Colors.black,fontWeight: FontWeight.bold,fontSize: 18.0,fontFamily: 'Rajdhani')),
            ),
          ),
        ),




      ],
    ),
  ):Container(
    width: MediaQuery.of(context).size.width,
    height: MediaQuery.of(context).size.height/2,
    padding: EdgeInsets.all(5.0),
    decoration: BoxDecoration(
      color: Theme.of(context).primaryColor,
      borderRadius: BorderRadius.only(topLeft: Radius.circular(20.0),topRight: Radius.circular(20.0)),
    ),
    child: Column(
      children: <Widget>[
        Container(
          alignment: Alignment.topLeft,
          width: MediaQuery.of(context).size.width,
          height: 30.0,
          child: IconButton(icon: Icon(Icons.arrow_downward,color: Colors.white,size: 32.0,), onPressed: (){
            Navigator.pop(context);
          }),
        ),

        Text('AMOUNT',style: TextStyle(color: Colors.white60,fontWeight: FontWeight.w100,fontSize: 12.0),),

        SizedBox(height: 20.0,),
        Text(widget.model.b,style: TextStyle(color: Colors.white,fontWeight: FontWeight.w600,fontSize: 32.0,fontFamily: 'Rajdhani'),),

        SizedBox(height: 10.0,),
        Text('SOURCE',style: TextStyle(color: Colors.white60,fontWeight: FontWeight.bold,fontSize: 12.0,fontFamily: 'Rajdhani'),),
        SizedBox(height: 15.0,),
        Text('EVERY MONTH AT   '+widget.model.date,style: TextStyle(color: Colors.white,fontWeight: FontWeight.w600,fontSize: 20.0,fontFamily: 'Rajdhani'),),


        SizedBox(height: 20.0,),
        Container(
          alignment: Alignment.bottomCenter,
          width: MediaQuery.of(context).size.width*0.8,
          height: 40.0,
          decoration: BoxDecoration(color: Colors.white,
            borderRadius: BorderRadius.circular(10.0),
          ),
          child: Center(
            child: Text('PA ',style: TextStyle(color: Colors.black,fontWeight: FontWeight.bold,fontSize: 18.0,fontFamily: 'Rajdhani')),
          ),
        ),




      ],
    ),
  );

1 ответ

Решение

Чтобы обновить state нижнего листа, вам нужно обернуть свой виджет StatefulBuilder и используйте StateSetter предоставлено для установки состояния:

Я добавил пример ниже:

showModalBottomSheet(
        context: context,
        builder: (context) {
          return StatefulBuilder(
              builder: (BuildContext context, StateSetter setModalState) {
            return  // ** YOUR WIDGETS ** 
          });
    });
Другие вопросы по тегам