Skip to content

swoopyui v2.5

Compare
Choose a tag to compare
@SKbarbon SKbarbon released this 07 Oct 14:35
· 15 commits to main since this release

This release contains bug fixes and improvements to the swift client and python host.

These are the new features:

  • Support new app view mode. (App, App is agent and MenuBarExtra)

Code example:

import swoopyui

def main (view:swoopyui.View):
    view.add(swoopyui.Text("Hello!"))

swoopyui.app(target=main, view=swoopyui.AppMode.App) # This is it, `swoopyui.AppMode`.

Its not a required arguments, its set as 'swoopyui.AppMode.App' by default.