package id.amigogroup.posterminal; import id.amigogroup.posterminal.util.Fucout; import java.util.Locale; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.image.Image; import javafx.scene.layout.StackPane; import javafx.stage.Stage; /** * JavaFX App */ public class App extends Application { @Override public void start(Stage stage) throws Exception { Locale.setDefault(Locale.forLanguageTag("in-ID")); Parent root = FXMLLoader.load(getClass().getResource("/fxml/FormLogin.fxml")); Scene scene = new Scene(root); stage.setScene(scene); stage.setResizable(false); stage.setTitle(Fucout.APP_TITLE); stage.getIcons().add(new Image(Fucout.APP_ICON)); stage.show(); } public static void main(String[] args) { launch(); } }