user_interface_components.md: minor

This commit is contained in:
Yann Cébron 2021-04-20 16:44:20 +02:00
parent 788b7bc72a
commit a7e13e9670

View File

@ -1,6 +1,6 @@
[//]: # (title: User Interface Components)
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2021 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
The IntelliJ Platform includes a large number of custom Swing components.
Using those components in your plugins will ensure that your plugin looks and works consistently with the UI of the rest of the IDE, and can often reduce the code size compared to using the default Swing components.
@ -10,13 +10,13 @@ Using those components in your plugins will ensure that your plugin looks and wo
{type="tip"}
> The recommended way of building UIs on the IntelliJ Platform (2019.2 and later) is using [Kotlin UI DSL](kotlin_ui_dsl.md).
> Using GUI designer with Kotlin is currently [not supported](https://youtrack.jetbrains.com/issue/KT-6660).
> Using GUI designer with Kotlin is currently not supported ([Issue](https://youtrack.jetbrains.com/issue/KTIJ-791)).
>
{type="note"}
Please refer to [Writing short and clear](https://jetbrains.design/intellij/text/writing_short/) in IntelliJ Platform UI Guidelines on writing UI-related texts.
> When using [Figma](https://www.figma.com) to design UI: see [IntelliJ Platform UI Kit](https://www.figma.com/community/file/938505862996154830) and [IntelliJ Icons](https://www.figma.com/community/plugin/948276470997072333/IntelliJ-Icons).
> See [UI Kit](https://jetbrains.design/intellij/resources/UI_kit/) when using [Figma](https://www.figma.com) to design UI.
>
{type="tip"}