I know how to development a widget with theia extension, but I want other people can development the widget simpler.
we use react, so I want to know if there is some plugin api like: widget.add(reactNode, options)
so that others who don’t know how to write extension can easily add reactNode to ide.
can some one help?
@yuzai you can take a look at documentation for the vscode api
in how to contribute views:
The following is an example:
For more complex views/widgets (while using the plugin api), you will need to use a webview
:
The following is an example with react
however I have not tried it:
ok thank you