About Winow

This commit is contained in:
nelle 2024-02-17 17:30:41 -07:00
parent 85c9becef4
commit a27487fbe7

View file

@ -0,0 +1,21 @@
package xyz.limepot.kotRemote.jexerWindow
import jexer.TApplication
import jexer.TWindow
import jexer.layout.StretchLayoutManager
class AboutWindow private constructor(parent: TApplication, flags: Int) :
TWindow(parent, "About", 0, 0, 52, 19, flags) {
constructor(parent: TApplication) : this(parent, CENTERED)
init {
layoutManager = StretchLayoutManager(
width - 2,
height - 2
)
addLabel("kotRemote", 20, 0)
addLabel("Wrapper for sshfs built in Kotlin, with Jexer.", 3, 2)
addLabel("Created by LimePotato", 13, 6)
}
}