Code Monkey home page Code Monkey logo

Comments (7)

MaIronCool avatar MaIronCool commented on August 19, 2024 2

Hi. I have a same problem. Package version 1.0.18.
appBar: CupertinoNavigationBar() - when i leaving chat page scrollToBottom widget remains visible.

from dash_chat.

fayeed avatar fayeed commented on August 19, 2024 1

@StuartMesham I don't know, I will check and let you know.

from dash_chat.

SebastienBtr avatar SebastienBtr commented on August 19, 2024 1

I might take a look at this issue later, it's maybe easy to solve.

To answer to @rlee1990 in #6 :

As a workaround you can use a floating button and add a listener on the scroll controller to show or hide this floating button. And of course when you click on this button you use the scroll controller to scroll down:

final scrollController = _chatViewKey.currentState.scrollController;

// When you click on the button:
scrollController.animateTo(
  scrollController.position.maxScrollExtent,
  curve: Curves.easeOut,
  duration: Duration(milliseconds: 300),
);

// The scroll container listener:
scrollController.addListener(() {
      if (scrollController.offset >= YOUR DESIRED VALUE) {
        // show the floating btn
      } else if (topReached) {
        // hide the floating btn
      }
  });
}

I didn't test this code, that's just an idea, hopefully this can help you :)

from dash_chat.

brandonwatkins avatar brandonwatkins commented on August 19, 2024

I am also experiencing the same problem for me using:

dash_chat: ^1.0.18

If the scroll to bottom button is visible and you click the back button in the app bar to pop the screen the button is visible on all screens.

from dash_chat.

albrownwood avatar albrownwood commented on August 19, 2024

same issue seen on 1.1.5

from dash_chat.

fayeed avatar fayeed commented on August 19, 2024

@albrownwood This has been fixed by the PR from @SebastienBtr, I will release the new version shortly.

from dash_chat.

fayeed avatar fayeed commented on August 19, 2024

Updated the package to 1.1.7

from dash_chat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.