diff --git a/docs/examples.md b/docs/examples.md index bf3b35d..17f6635 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -405,6 +405,12 @@ This is a stepping stone to more complex stock monitoring examples. - `StockService`: Generates stock price updates in a worker thread - `StockProcessor`: Processes updates, applies alerts, and emits results - `StockViewModel`: Maintains state for the UI (in this case, a console UI) + +**Screenshot:** +
+ Stock Monitor Console +

Stock Monitor Console: Real-time price updates, alert configuration, and notification history in action

+
**What it demonstrates**: - Multi-threaded architecture with signals crossing between threads @@ -473,6 +479,12 @@ This example is great for seeing how TSignal can be scaled up to more realistic, - `StockView` as a Kivy widget updates UI elements when signals fire - `set_alert` and `remove_alert` signals triggered from UI and handled by `StockProcessor` +**Screenshot:** +
+ Stock Monitor UI +

Stock Monitor UI: Real-time price updates, alert configuration, and notification history in action

+
+ **What it demonstrates**: - Integrating TSignal with Kivy’s main loop and UI elements - Thread-safe updates to UI from background workers