Is it possible to import “FlatLaf - Flat Look and Feel” into Katalon Studio?

277 Views Asked by At

Is it possible to import "FlatLaf - Flat Look and Feel" into a test case of Katalon Studio?

1

There are 1 best solutions below

0
Simos Sigma On

I just had to add the flatlaf-2.1.jar file into my project as an external library.

From menu "Project" → "Settings" → "Library Management".

Then I had to import it into my code import com.formdev.flatlaf.FlatDarkLaf.

And use it like this UIManager.setLookAndFeel(new FlatDarkLaf()).

Before:

enter image description here

After:

enter image description here