reflex/docs/events/special_events.md
2024-02-26 17:18:28 +01:00

505 B

import reflex as rx

from pcweb.pages.docs import api_reference

Special Events

Reflex also has built-in special events can be found in the reference.

For example, an event handler can trigger an alert on the browser.

class SpecialEventsState(rx.State):
    def alert(self):
        return rx.window_alert("Hello World!")

def special_events_example():
    return rx.button("Alert", on_click=SpecialEventsState.alert)