Значки внутри FlexibleSpace не скрываются при прокрутке SliverAppBar - PullRequest
2 голосов
/ 29 января 2020

Внутри flexibleSpace у меня есть кнопки «Next» и «Prev», как вы можете видеть ниже, текст кнопки «Next» и «Prev» скрывается при прокрутке, но стрелки вперед и назад не скрываются. Я хочу, чтобы они прятались при прокрутке.

enter image description here

Это мой код,

            SliverAppBar(
              backgroundColor: selectedColor ?? Colors.blue,
              expandedHeight: 112,
              snap: true,
              pinned: false,
              floating: true,
              forceElevated: true,
              actions: <Widget>[
                IconButton(
                    icon: Icon(Icons.event),
                    onPressed: () {
                      DateTime now = DateTime.now();
                      _selectDate(context, now);
                    })
              ],
              flexibleSpace: selectedTitle != null ? SafeArea(
                child: Column(
                  children: <Widget>[
                    Container(
                      height: kToolbarHeight,
                      child: Column(
                        crossAxisAlignment: CrossAxisAlignment.center,
                        mainAxisAlignment: MainAxisAlignment.center,
                        children: <Widget>[
                          Text(
                            selectedTitle?.toUpperCase() ?? '',
                            style: Theme
                                .of(context)
                                .textTheme
                                .title
                                .copyWith(fontSize: 16, color: Colors.white),
                          ),
                          SizedBox(
                            height: 2,
                          ),
                          isWeekly
                              ? SizedBox(
                            height: 0,
                            width: 0,
                          )
                              : Text(
                            displayDate ?? '',
                            style: Theme
                                .of(context)
                                .textTheme
                                .caption
                                .copyWith(fontSize: 10, color: Colors.white),
                          ),
                          SizedBox(
                            height: 2,
                          ),
                          Text(
                            selectedParshaNodeModel?.parshaName ?? '',
                            style: Theme
                                .of(context)
                                .textTheme
                                .subtitle
                                .copyWith(fontSize: 14, color: Colors.white),
                          ),
                        ],
                      ),
                    ),
                    Expanded(
                      child: Container(
                        height: kToolbarHeight,
                        width: MediaQuery
                            .of(context)
                            .size
                            .width,
                        color: Colors.white,
                        child: Row(
                          children: <Widget>[
                            Expanded(
                                child:
                                FlatButton(
                                    onPressed: () {}
                                     ,
                                    child: Row(
                                      crossAxisAlignment:
                                      CrossAxisAlignment.center,
                                      mainAxisAlignment:
                                      MainAxisAlignment.spaceAround,
                                      children: <Widget>[
                                        Icon(Icons.arrow_back,
                                            color: Colors.grey),
                                        Text(
                                          'Prev',
                                          style: Theme
                                              .of(context)
                                              .textTheme
                                              .subhead
                                              .copyWith(color: Colors.grey),
                                        )
                                      ],
                                    ))),
                            Expanded(
                                child:
                                FlatButton(
                                    onPressed: (){},
                                    child: Row(
                                      mainAxisAlignment:
                                      MainAxisAlignment.spaceAround,
                                      crossAxisAlignment:
                                      CrossAxisAlignment.center,
                                      children: <Widget>[
                                        Text('Next',
                                            style: Theme
                                                .of(context)
                                                .textTheme
                                                .subhead
                                                .copyWith(color: Colors.grey)),
                                        Icon(
                                          Icons.arrow_forward,
                                          color: Colors.grey,
                                        ),
                                      ],
                                    )))
                          ],
                        ),
                      ),
                    )
                  ],
                ),
              ) : Container(),
            ),

1 Ответ

4 голосов
/ 29 января 2020

Это происходит потому, что стрелки выходят за пределы вашей кнопки. Добавление clipBehavior: Clip.hardEdge должно решить вашу проблему:

child: FlatButton(
  clipBehavior: Clip.hardEdge,
  onPressed: () {},
  child: Row(
    ...Your Arrow and Text
  ),
),
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...