This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sample | |
import javafx.application.Application | |
import javafx.collections.FXCollections | |
import javafx.scene.Scene | |
import javafx.scene.control.ListCell | |
import javafx.scene.control.ListView | |
import javafx.stage.Stage | |
import javafx.util.Callback |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package controller | |
import models.User | |
import tornadofx.Controller | |
import tornadofx.Rest | |
class GitHub : Controller() { | |
val api : Rest by inject() | |
init { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package loginapp.app | |
import loginapp.views.LoginScreen | |
import tornadofx.App | |
class LoginApp : App(LoginScreen::class) |