Nikhil Rao

Results 163 comments of Nikhil Rao

@TommyDew42 implemented `pc.list`, now we just need `pc.dict`

Had to [comment this out temporarily](https://github.com/pynecone-io/pynecone/pull/407) due to an issue with pickling the pc.list, which we need for Redis. Will prioritize getting this back in.

This would definitely be nice - anyone have any ideas how to do this cleanly? Or will we have to manually write out each create function...

@FHU-yezi we already have a `create` class method. For example, instead of `pc.text("hello")` you can already do `pc.Text.create("hello")` and it has the same result. The former is just a shorthand...

> > @FHU-yezi Yes for `pc.Text.create()` but not for the lower case functions. You can test it easily in most of the IDEs. e.g. having python language plugins in vscode...

We can't use the `__init__` method because it's takes different arguments than the `create` method. The `__init__` calls the Pydantic constructor, while `create` takes in props as the arguments to...

We still need a way to read the cookies and local storage

For cases of custom components, you should use the base `rx.table`. The data_table is a bit hard to customize and is meant mostly for read only simple data.

I think for this use case you can use an `on_load` event where you call `self.reset()` which should reset the state.

The new Radix components should be preferred now.