diff --git a/README.md b/README.md index bae6cbf..75a6a1a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ Pycord Reactive Views is a powerful library that extends [Pycord](https://pycord.dev), bringing reactive programming to Discord bot development. It enables developers to create dynamic, responsive user interfaces for their bots with ease. +![Color select example](./assets/color_select.gif) ## Table of Contents - [What is Reactivity?](#what-is-reactivity) - [Features](#features) @@ -87,6 +88,8 @@ async def counter(ctx): await Counter().send(ctx) ``` +![Counter Example](./assets/counter.gif) + This example demonstrates how to bind a button's label, style, and disabled state to functions that determine their values based on the current state of the counter. ## Documentation diff --git a/assets/color_select.gif b/assets/color_select.gif new file mode 100644 index 0000000..32d9f95 Binary files /dev/null and b/assets/color_select.gif differ diff --git a/assets/counter.gif b/assets/counter.gif new file mode 100644 index 0000000..d381dab Binary files /dev/null and b/assets/counter.gif differ