Skip to content

Instantly share code, notes, and snippets.

@bbirec
Created February 22, 2021 08:05
Show Gist options
  • Save bbirec/41e7c228424c4f7cdce5a7e3c7c4980c to your computer and use it in GitHub Desktop.
Save bbirec/41e7c228424c4f7cdce5a7e3c7c4980c to your computer and use it in GitHub Desktop.
바코드 라벨지 템플릿
{
"type": "Container",
"flex": {
"size": {
"width": "100%",
"height": "100%"
},
"padding": {
"top": "8",
"right": "8",
"bottom": "8",
"left": "8"
},
"flex_direction": "column"
},
"children": [
{
"type": "Text",
"text": {
"text": "제품명 : {{name}}",
"text_size": 10,
"text_max_line": 1,
"text_align": "center",
"font_family": "Roboto,Noto Sans KR,Noto Sans SC,Noto Sans TC,Noto Sans JP",
"font_weight": "bold"
}
},
{
"type": "Text",
"text": {
"text": "상세정보 : {{재질}} / {{컬러}}",
"text_size": 10,
"text_max_line": 2,
"text_align": "center",
"font_family": "Roboto,Noto Sans KR,Noto Sans SC,Noto Sans TC,Noto Sans JP"
}
},
{
"type": "Barcode",
"flex": {
"margin": {
"top": "5",
"right": "0",
"bottom": "5",
"left": "0"
},
"flex_grow": 1
},
"barcode": {
"text": "{{barcode}}"
}
},
{
"type": "Text",
"text": {
"text": "{{barcode}}",
"text_size": 8,
"text_max_line": 1,
"text_align": "center",
"font_family": "Roboto,Noto Sans KR,Noto Sans SC,Noto Sans TC,Noto Sans JP"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment