Advertisement
Guest User

JSON Widget V2

a guest
Nov 13th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | Software | 0 0
  1. {
  2. "type": "Scaffold",
  3. "backgroundColor": "#000000",
  4. "titleBar": {
  5. "type": "TitleBar",
  6. "text": "To-do List",
  7. "icon": "https://cdn-icons-png.flaticon.com/512/154/154871.png"
  8. },
  9. "children": [
  10. {
  11. "type": "Row",
  12. "verticalAlignment": "Top",
  13. "horizontalAlignment": "Center",
  14. "paddingStart": 10,
  15. "paddingTop": -14,
  16. "children": [
  17. {
  18. "type": "Text",
  19. "color": "#FFFFFF",
  20. "bold": true,
  21. "text": "___________________________________________________"
  22. }
  23. ]
  24. },
  25. {
  26. "type": "Row",
  27. "verticalAlignment": "Center",
  28. "horizontalAlignment": "Start",
  29. "paddingStart": 20,
  30. "paddingTop": 15,
  31. "commandPrefix": "todo_widget_1",
  32. "children": [
  33. {
  34. "type": "Button",
  35. "contentColor": "#FFFFFF",
  36. "backgroundColor": "#FFFFFF",
  37. "size": 20,
  38. "text": " ",
  39. "enabled": true,
  40. "command": "Button_1",
  41. "buttonType": "Filled"
  42. },
  43. {
  44. "type": "Text",
  45. "color": "#FFFFFF",
  46. "linethrough": true,
  47. "paddingStart": 10,
  48. "command": "Text_1",
  49. "text": "Recordatorio 1"
  50. }
  51. ]
  52. },
  53. {
  54. "type": "Row",
  55. "verticalAlignment": "Center",
  56. "horizontalAlignment": "Start",
  57. "paddingTop": 50,
  58. "paddingStart": 20,
  59. "commandPrefix": "todo_widget_2",
  60. "children": [
  61. {
  62. "type": "Button",
  63. "contentColor": "#FFFFFF",
  64. "backgroundColor": "#FFFFFF",
  65. "size": 20,
  66. "text": " ",
  67. "enabled": true,
  68. "command": "Button_2",
  69. "buttonType": "Outline"
  70. },
  71. {
  72. "type": "Text",
  73. "color": "#FFFFFF",
  74. "linethrough": false,
  75. "paddingStart": 10,
  76. "command": "Text_2",
  77. "text": "Recordatorio 2"
  78. }
  79. ]
  80. },
  81. {
  82. "type": "Row",
  83. "verticalAlignment": "Center",
  84. "horizontalAlignment": "Start",
  85. "paddingTop": 85,
  86. "paddingStart": 20,
  87. "commandPrefix": "todo_widget_3",
  88. "children": [
  89. {
  90. "type": "Button",
  91. "contentColor": "#FFFFFF",
  92. "backgroundColor": "#FFFFFF",
  93. "size": 20,
  94. "text": " ",
  95. "enabled": true,
  96. "buttonType": "Outline"
  97. },
  98. {
  99. "type": "Text",
  100. "color": "#FFFFFF",
  101. "linethrough": false,
  102. "paddingStart": 10,
  103. "text": "Recordatorio 3"
  104. }
  105. ]
  106. }
  107. ]
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement