|
|
| import gradio as gr |
| from gradio_buttontip import ButtonTip |
|
|
| def button_click(): |
| return "Button clicked!" |
|
|
| with gr.Blocks() as demo: |
| gr.Markdown("This interface showcases a button with a tooltip.") |
| with gr.Row(): |
| inp = [ |
| ButtonTip( |
| tooltip="Tooltip Text", |
| tooltip_color="white", |
| tooltip_background_color="red", |
| x=120, |
| y=-20, |
| value="Left Button" |
| ), |
| ButtonTip( |
| tooltip="Tooltip Text", |
| tooltip_color="white", |
| tooltip_background_color="blue", |
| x=-90, |
| y=-20, |
| value="Right Button" |
| ) |
| ] |
| out = "Hello World" |
|
|
| if __name__ == "__main__": |
| demo.launch() |
|
|