Files
PyUIBuilder/src/frameworks/tkinter/sidebarWidgets.js
paul 740a5400f8 feat: added sidebar widget drop
fix: corrected color picker value, drag and drop
2024-09-22 12:39:03 +05:30

41 lines
812 B
JavaScript

import Widget from "../../canvas/widgets/base"
import ButtonWidget from "./assets/widgets/button.png"
const TkinterSidebar = [
{
name: "Main window",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Widget
},
{
name: "Top Level",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Widget
},
{
name: "Frame",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Widget
},
{
name: "Button",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Widget
},
{
name: "Input",
img: ButtonWidget,
link: "https://github.com",
widgetClass: Widget
},
]
export default TkinterSidebar