Hello! Does st.link_button component return anything? For example, I can say
if st.button(params....):
do something
Can I do the same for st.link_button?
If not, what is a good way to display some linkable text that acts exactly like link_button but either has an on_click callback possibility or otherwise lets me know that it has been clicked? I do not want st.button()
Hey @ognend . Welcome to the community!. I have a doubt that you want return any thing by using that function or anything else?? According to the documentation it doesn’t return anyting.
Because I have an app where if I use the button which is inside a container (column) and someone clicks on the button, I open the link in a different tab. When this happens the output inside the column where the button is becomes mangled. I need to know if someone has clicked the link to open the url. So, the button will not work (don’t know if it is a bug or…) and the link_button fits the bill, only it doesn’t seem to return a value nor does it allow for an on_click callback (which makes me wonder what the purpose of it is).