We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66eb7aa commit c129511Copy full SHA for c129511
website/docs/api/interfaces/dialprops.md
@@ -4,6 +4,23 @@ title: "DialProps"
4
sidebar_label: "DialProps"
5
---
6
7
+The Dial provides ability to add and manipulate native dial slider widgets. It is based on
8
+[NodeGui's QDial](https://docs.nodegui.org/docs/api/generated/classes/qdial/).
9
+## Example
10
+```javascript
11
+import React from "react";
12
+import { Renderer, Dial, Window } from "@nodegui/react-nodegui";
13
+const App = () => {
14
+ return (
15
+ <Window>
16
+ <Dial />
17
+ </Window>
18
+ );
19
+};
20
+Renderer.render(<App />);
21
+
22
+```
23
24
## Hierarchy
25
26
↳ [ViewProps](viewprops.md)‹QDialSignals›
0 commit comments