public interface StatusBarService
Example
Services.get(StatusBarService.class).ifPresent(service -> {
service.setColor(Color.GOLD);
});
Android Configuration: none
iOS Configuration: none
| Modifier and Type | Method | Description |
|---|---|---|
void |
setColor(javafx.scene.paint.Color color) |
Sets the color of the status bar to the specified color.
|