The method to add a sidbar widget #15113
-
Hi theia team, Best |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @Orangewithsugar, There are some resources you can consult: First you can take a look at the official documentation. If you don't find what you are looking for, then I would recommend taking a look at the Theia codebase itself. We have a lot of examples in-repo used in the example applications. If you can't find a matchig example, you could look through the Theia extensions which are part of the repository. Conceptually there is no difference between Theia extensions offered via the core repository and extensions you write yourself, they have the same capabilities. So for example if you want to create a view which integrates similar to the output view or the memory inspector, then you can check how they were implemented and do the same for your view. |
Beta Was this translation helpful? Give feedback.
Hi @Orangewithsugar,
There are some resources you can consult: First you can take a look at the official documentation.
If you don't find what you are looking for, then I would recommend taking a look at the Theia codebase itself. We have a lot of examples in-repo used in the example applications.
If you can't find a matchig example, you could look through the Theia extensions which are part of the repository. Conceptually there is no difference between Theia extensions offered via the core repository and extensions you write yourself, they have the same capabilities. So for example if you want to create a view which integrates similar to the output view or the memory inspector, then you …