Skip to content

Commit

Permalink
feat: Add assets (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-martinez authored and taorepoara committed Sep 29, 2023
1 parent fea7433 commit 49f157d
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions lib/assets/api/ui.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"styles": {
"center-container": {
"v-align": "center",
"h-align": "center"
},
"v-container": {
"v-align": "justify"
},
"h-container": {
"h-align": "justify"
},
"title": {
"font-size": "24px"
},
"counter": {
"h-align": "center",
"font-size": "36px"
},
"button": {
"background-color": "#c23e06"
}
},
"root": {
"id": "1",
"type": "container",
"styles": [
"center-container"
],
"children": [
{
"id": "2",
"type": "container",
"styles": [
"v-container"
],
"children": [
{
"id": "3",
"type": "text",
"value": "Compteur",
"styles": [
"title"
]
},
{
"id": "4",
"type": "text",
"value": "0",
"styles": [
"counter"
]
},
{
"id": "5",
"type": "container",
"styles": [
"h-container"
],
"children": [
{
"id": "6",
"type": "button",
"value": "-",
"styles": [
"button"
],
"listeners": {
"on-click": {
"code": "ClickMinus@0"
}
}
},
{
"id": "7",
"type": "button",
"value": "+",
"styles": [
"button"
],
"listeners": {
"on-click": {
"code": "ClickPlus@0"
}
}
}
]
}
]
}
]
}
}
Binary file added lib/assets/images/2.0x/logo-horizontal-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/2.0x/logo-vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/3.0x/logo-horizontal-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/3.0x/logo-vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/colored-line.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/icon-1024-white-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/logo-horizontal-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/logo-vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lib/assets/images/maskable-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 49f157d

Please sign in to comment.