Skip to content
This repository has been archived by the owner on Aug 17, 2020. It is now read-only.
/ netkit Public archive

Tiny wrapper for JavaFX WebView component which improves bugs and adds a more intuitive api

License

Notifications You must be signed in to change notification settings

dzikoysk-playground/netkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Netkit Build Status

[Abandoned] Tiny wrapper for JavaFX WebView component which improves bugs and adds a more intuitive api

Getting Started

public class NetkitTest extends Application {

    public static void main(String[] args) {
        Application.launch(NetkitTest.class);
    }

    @Override
    public void start(Stage stage) throws Exception {
        NetkitFactory factory = new NetkitFactory();
        Netkit netkit = factory.createSynchronizedNetkit();
        netkit.loadURL("https://dzikoysk.net");
        netkit.resize(900, 600);

        Group root = new Group(netkit.toParent());
        Scene scene = new Scene(root, root.getBoundsInParent().getWidth(), root.getBoundsInParent().getHeight());

        stage.setTitle("Tests :: Netkit");
        stage.setScene(scene);
        stage.show();
    }

}

Maven

<dependencies>
    <dependency>
        <groupId>net.dzikoysk</groupId>
        <artifactId>netkit</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>panda-repo</id>
        <url>https://repo.panda-lang.org/</url>
    </repository>
</repositories>

About

Tiny wrapper for JavaFX WebView component which improves bugs and adds a more intuitive api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published