Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any bootstrapping template to build apps that look like Visual Studio Code [closed]

I want to build an app that looks like Visual Studio code. Is there any template or ui library that I can use as a starting point? The look that I want to achieve is like shown in the image enter image description here

I am suspecting there must be a starter template as Microsoft is using the same look across apps, to name a few: VS Code, Botframework Emulator v4, Microsoft SQL Operations Studio.

like image 675
user45245 Avatar asked Mar 08 '18 15:03

user45245


1 Answers

VS Code does not use an external UI component library; the UI is built from a small internal library of composable components.

Please browse through the source if you are interested in seeing how all of this is implemented. Keep in mind that the UI code is often quite VS code specific. While it is fairly easily to modify these components in VS Code, it would generally not be worth the effort to extract these components for use in an external app.

like image 93
Matt Bierner Avatar answered Oct 05 '22 11:10

Matt Bierner