cfg.menu.json 696 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [
  2. {
  3. "type": "text",
  4. "text": {
  5. "en-US": "Settings will be applied after watchface reload, eg. after join and exit watchface settings screen"
  6. }
  7. },
  8. {
  9. "type": "headline",
  10. "text": {
  11. "en-US": "Hello",
  12. "ru-RU": "Привет"
  13. }
  14. },
  15. {
  16. "type": "color",
  17. "key": "testColor",
  18. "text": {
  19. "en-US": "Test color"
  20. }
  21. },
  22. {
  23. "type": "select",
  24. "key": "testSelect",
  25. "text": {
  26. "en-US": "Test select"
  27. },
  28. "options": [
  29. "A", "B", "C"
  30. ]
  31. },
  32. {
  33. "type": "checkbox",
  34. "key": "checkbox1",
  35. "text": {
  36. "en-US": "Checkbox 1"
  37. }
  38. },
  39. {
  40. "type": "checkbox",
  41. "key": "checkbox2",
  42. "text": {
  43. "en-US": "Checkbox 2"
  44. }
  45. }
  46. ]