-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Description
Hi JVx-Engineering Team!
We recently noticed, that applying a background-color on a UIButton in Java has no effect in React.
In Java Swing it does look like that:
public class SimpleWorkScreen extends DataSourceWorkScreen {
private static final long serialVersionUID = 1L;
public SimpleWorkScreen(IWorkScreenApplication pApplication, AbstractConnection pConnection) throws Throwable {
super(pApplication, pConnection, null);
UIButton b = new UIButton("this button is red");
b.setBackground(UIColor.red);
add(b);
}
}It does seem to at least transfer the property to the React-Side
Thank you for your awesome support 👍
Have a nice day,
Florian
Reactions are currently unavailable


