Guides
Load Webview
load_url (Load URL)
app = Pyloid(app_name="Pyloid-App")
window = app.create_window("Pyloid-Window")
window.load_url("https://www.example.com")
window.show()
load_file (Load File)
app = Pyloid(app_name="Pyloid-App")
window = app.create_window("Pyloid-Window")
window.load_file("./index.html")
window.show()
load_html (Load HTML)
app = Pyloid(app_name="Pyloid-App")
window = app.create_window("Pyloid-Window")
window.load_html("<h1>Hello, Pyloid!</h1>")
window.show()