Looking for feedback collector

Hi,

i am looking for a feedback collector which i could add to my app. Does anyone already use something like this?

Tried using MS forms but cant find a way to add it in a nice way. Would be cool if its a sticky button at the right screen or so, which is alway present.

Maybe will build by myself, but a ready to use solution would be faster i think.

For that you just need to use button.setClassName(“float”) and then add something in your CSS, e.g. the below example place the button to bottom right corner.

vaadin-button.float {
    position: fixed; // or absolute
    bottom: 10px;
    right: 10px;
}
1 Like