Skip to content

Commit

Permalink
arkui: Add native node bindings
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Schwender <[email protected]>
  • Loading branch information
jschwe committed Jan 9, 2025
1 parent 7468964 commit db399f5
Show file tree
Hide file tree
Showing 5 changed files with 11,956 additions and 2 deletions.
3 changes: 1 addition & 2 deletions components/arkui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

### Add

- native_dialog
- native_interface
- Add native dialog, native interface and native node bindings.

## 0.2.2 (2025-01-08)

Expand Down
4 changes: 4 additions & 0 deletions components/arkui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ pub mod native_gesture;
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub mod native_interface;

#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub mod native_node;

#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub mod native_type;
Expand Down
2 changes: 2 additions & 0 deletions components/arkui/src/native_node.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mod native_node_ffi;
pub use native_node_ffi::*;
Loading

0 comments on commit db399f5

Please sign in to comment.