5m4ck3r commited on
Commit
96be831
·
verified ·
1 Parent(s): 85a1cb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -1
app.py CHANGED
@@ -33,7 +33,29 @@ iface = gr.Interface(
33
  inputs=["text", "text"],
34
  outputs="file",
35
  title="Figma to Tkinter Converter",
36
- description="Upload your Figma design by providing the URL and token."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  )
38
 
39
  iface.launch()
 
33
  inputs=["text", "text"],
34
  outputs="file",
35
  title="Figma to Tkinter Converter",
36
+ description="""
37
+ Upload your Figma design by providing the URL and token.
38
+ <br>
39
+
40
+ ### Naming is Important
41
+
42
+ | Figma Element Name | Tkinter Element |
43
+ | --- | --- |
44
+ | Button | Button |
45
+ | Line | Line |
46
+ | Text | Name it anything |
47
+ | Rectangle | Rectangle |
48
+ | TextArea | Text Area |
49
+ | TextBox | Entry |
50
+ | Image | Canvas.Image() |
51
+ | ButtonHover (EXPERIMENTAL) | Button shown on hover |
52
+
53
+ <br>
54
+
55
+ **NOTE** : This project is created by : ParthJadhav
56
+
57
+ Checkout this repo to know more : https://github.com/ParthJadhav/Tkinter-Designer
58
+ """
59
  )
60
 
61
  iface.launch()