reflex-examples
reflex-examples copied to clipboard
A repository full of Reflex example apps.
All the requirement.txt files currently reference `pynecone-io>=0.1.6` which is an ancient version. We should update them.
``` class ProductGroup(pc.Model, table=True): code: str = None name: str class Product(pc.Model, table=True): code: str = None name: str price = float image: str = None description: str = None...
[Status] the example code - 'quiz' In 'index' class, there's a declaration of a 'box' used to place the 'Submit' button, I've assigned a color "lightblue" to this button and...
Anywhere we're calling `return self.X` or `yield self.X` need to be changed to the class reference.
Repro: 1. go to the data table at the bottom of the page, and advance to page 3 2. search for "williams" 3. "showing 1 to 7 of 7 results"...
https://github.com/pynecone-io/pynecone-examples/assets/12568287/135ecee5-b9d6-42a9-99d3-e0f52980aeb5 This counter demonstrates a simple Collaborative web app. And it can also support IoT applications too if you need. - Tick: Use the Tick pattern to update UI whenever...
After setup Nick in Nick's input and then clicking Message'input, We have the following error message ``` Traceback (most recent call last): File "/Users/milochen/anaconda3/envs/pynecone-examples/lib/python3.11/site-packages/pynecone/state.py", line 693, in _process_event events =...
Some of the UX of examples apps is poor due to lack of enter-key support, which would be improved by using the new `pc.form` component with `on_submit`, even without modifying...