Text¶
Text
component can be used to add some text content in your sidebar.
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import INKAPI from './inkapi.js'
INKAPI.ready(async () => {
const UI = INKAPI.ui;
const sidebarObj = await UI.create({
type: "Sidebar",
sidebarTitle: "Personal Sidebar",
icon: "./sample.svg",
children: [``
{
type: "Text",
id: "myTxt",
text: "This is a special message.",
styles: {
"color": "#777",
}
},
],
});
console.log(sidebarObj);
});
|
Options¶
Name |
Type |
Description |
---|---|---|
id? |
|
You can assign a unique id to the component. It will be helpful for listening to events and removing component in future. If |
type |
|
This field should be passed |
text |
|
Text content for the component. |
styles? |
|
Custom styles for the element. |