I want help in my flet app #5224
Unanswered
Hanseeka-Dhingana
asked this question in
Q&A
Replies: 2 comments
-
I can't replicate the scenario given you are importing custom dependencies, but in this code, should it be "visible = True" instead of False? # Add a button to open the chatbot
chatbot_button = ft.FloatingActionButton(
icon=ft.Icons.SUPPORT_AGENT_ROUNDED,
bgcolor="#82C6AD",
on_click=lambda e : open_chatbot(True),
tooltip="IELTS AI Assistant",
visible=False,
) So instead, just change that one line # Add a button to open the chatbot
chatbot_button = ft.FloatingActionButton(
icon=ft.Icons.SUPPORT_AGENT_ROUNDED,
bgcolor="#82C6AD",
on_click=lambda e : open_chatbot(True),
tooltip="IELTS AI Assistant",
visible=True,
) Otherwise, I am unsure how that button is being triggered to visible=True. As I understand the code, it would never become visible. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
When I chatbot on all the screen except than login and signup page but it doesn't display on the home screen I don't know why. anyone have any idea?
Code sample
Error message
No response
------------------------------------------------------
Beta Was this translation helpful? Give feedback.
All reactions