# FracTK FracTK is a GUI framework for Rust, for making desktop apps using a React-like API. It is backend-agnostic, and will try to use the native GUI library on each target. Currently, it uses the Windows API for `windows` targets, and GTK4 for `unix` targets. ## Current state The framework is currently in a pre-alpha stage. All releases from the `0.0.x` series are to be considered experimental, and the API may change between them. We will make periodic releases when various milestones are reached. When the library grows further, processes will be established and semantic versioning will be used, starting at `1.0.0`. ## Getting started Here is some quick boilerplate code for an app: ```rust use fractk::prelude::*; use fractk_macro::*; app! { treeml! { } } ``` Some example apps are available in the `examples` directory.