- Source
- __.scala
Member
abstract class Application(width: Int.Opt, height: Int.Opt, title: String, show: Boolean, verbose: Boolean)
A convenient way to create GUI main executable class
object MyApp extends Fx.Application:
lazy val View = Fx.Label("Hello")
- Value Params
- show
if
true
,stage.show
will auto run- title
application window title
- verbose
if true, console prints application name, start, and end time
- Source
- __.scala
abstract class Application(width: Int.Opt, height: Int.Opt, title: String, show: Boolean, verbose: Boolean)
A convenient way to create GUI main executable class
object MyApp extends Fx.Application:
lazy val View = Fx.Label("Hello")
- Value Params
- show
if
true
,stage.show
will auto run- title
application window title
- verbose
if true, console prints application name, start, and end time
- Source
- __.scala