├── .github └── workflows │ ├── android.yml │ ├── linux.yml │ ├── macos.yml │ ├── web.yml │ └── windows.yml ├── .gitignore ├── .rooter ├── CLAUDE.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── README.zh-CN.md ├── flake.lock ├── flake.nix ├── icon-helper ├── Cargo.toml └── src │ └── main.rs ├── lib ├── cutil │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── backup_recover.rs │ │ ├── crypto.rs │ │ ├── fs.rs │ │ ├── http.rs │ │ ├── lib.rs │ │ ├── number.rs │ │ ├── str.rs │ │ ├── time.rs │ │ └── vec.rs ├── pmacro │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── examples │ │ └── pmacro_demo.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ └── integration_tests.rs └── sqldb │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ ├── entry.rs │ └── lib.rs ├── package └── deb │ ├── .gitignore │ ├── .rooter │ ├── README.md │ ├── init.sh │ ├── package │ ├── DEBIAN │ │ ├── control │ │ ├── copyright │ │ ├── postinst │ │ └── preinst │ └── usr │ │ └── share │ │ └── applications │ │ └── slint-template.desktop │ └── pkg-deb.sh ├── rust-toolchain ├── screenshot ├── 1-cn.png ├── 1-en.png ├── 2-cn.png ├── 2-en.png ├── 3-cn.png ├── 3-en.png ├── 4-cn.png ├── 4-en.png ├── 5-cn.png ├── 5-en.png ├── 6-cn.png ├── 6-en.png ├── 7-cn.png └── 7-en.png ├── script ├── .gitignore ├── convert-brand-to-window-icon.sh ├── init-project.sh ├── merge-to-slint-template-project.sh ├── replace-android-icon.sh └── replace-android-splash.sh ├── slint-template ├── .gitignore ├── Cargo.toml ├── android │ ├── keystore │ │ ├── debug.keystore │ │ └── release.keystore │ └── res │ │ ├── drawable-hdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-mdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-v21 │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-xhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-xxhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-xxxhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v31 │ │ ├── colors.xml │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── build.rs ├── src │ ├── config.rs │ ├── db.rs │ ├── desktop.rs │ ├── lib.rs │ ├── logic.rs │ ├── logic │ │ ├── about.rs │ │ ├── clipboard.rs │ │ ├── confirm_dialog.rs │ │ ├── examples_desktop.rs │ │ ├── examples_mobile.rs │ │ ├── examples_web.rs │ │ ├── popup_action.rs │ │ ├── setting.rs │ │ ├── toast.rs │ │ ├── tr.rs │ │ └── util.rs │ └── version.rs ├── ui │ ├── android-window.slint │ ├── base │ │ ├── about.slint │ │ ├── account-balance.slint │ │ ├── address-book.slint │ │ ├── audio-control.slint │ │ ├── audio-level.slint │ │ ├── avatar.slint │ │ ├── badge.slint │ │ ├── banner.slint │ │ ├── blank-welcome.slint │ │ ├── blanket.slint │ │ ├── brand.slint │ │ ├── bread-crumb.slint │ │ ├── btn.slint │ │ ├── center-layout.slint │ │ ├── chartbar.slint │ │ ├── check-btn.slint │ │ ├── circle-progress.slint │ │ ├── collapse.slint │ │ ├── confirm-dialog.slint │ │ ├── dash-line.slint │ │ ├── date-picker.slint │ │ ├── def.slint │ │ ├── dialog.slint │ │ ├── divider.slint │ │ ├── drawer.slint │ │ ├── elevated-btn.slint │ │ ├── example-component.slint │ │ ├── file-picker.slint │ │ ├── flash-progress.slint │ │ ├── flickable-with-scrollbar.slint │ │ ├── gain-focus.slint │ │ ├── group-box.slint │ │ ├── head.slint │ │ ├── help.slint │ │ ├── icon-btn.slint │ │ ├── icon.slint │ │ ├── icons-dialog.slint │ │ ├── icons │ │ │ ├── 1.svg │ │ │ ├── 10.svg │ │ │ ├── 11.svg │ │ │ ├── 12.svg │ │ │ ├── 13.svg │ │ │ ├── 14.svg │ │ │ ├── 15.svg │ │ │ ├── 16.svg │ │ │ ├── 17.svg │ │ │ ├── 18.svg │ │ │ ├── 19.svg │ │ │ ├── 2.svg │ │ │ ├── 20.svg │ │ │ ├── 21.svg │ │ │ ├── 22.svg │ │ │ ├── 23.svg │ │ │ ├── 24.svg │ │ │ ├── 25.svg │ │ │ ├── 26.svg │ │ │ ├── 27.svg │ │ │ ├── 28.svg │ │ │ ├── 29.svg │ │ │ ├── 3.svg │ │ │ ├── 30.svg │ │ │ ├── 31.svg │ │ │ ├── 32.svg │ │ │ ├── 33.svg │ │ │ ├── 34.svg │ │ │ ├── 35.svg │ │ │ ├── 36.svg │ │ │ ├── 37.svg │ │ │ ├── 38.svg │ │ │ ├── 39.svg │ │ │ ├── 4.svg │ │ │ ├── 40.svg │ │ │ ├── 41.svg │ │ │ ├── 42.svg │ │ │ ├── 43.svg │ │ │ ├── 44.svg │ │ │ ├── 45.svg │ │ │ ├── 46.svg │ │ │ ├── 47.svg │ │ │ ├── 48.svg │ │ │ ├── 49.svg │ │ │ ├── 5.svg │ │ │ ├── 50.svg │ │ │ ├── 6.svg │ │ │ ├── 7.svg │ │ │ ├── 8.svg │ │ │ ├── 9.svg │ │ │ ├── led0.svg │ │ │ ├── led1.svg │ │ │ ├── led2.svg │ │ │ ├── led3.svg │ │ │ ├── led4.svg │ │ │ ├── led5.svg │ │ │ ├── led6.svg │ │ │ ├── led7.svg │ │ │ ├── led8.svg │ │ │ └── led9.svg │ │ ├── label.slint │ │ ├── landing-page.slint │ │ ├── language-dialog.slint │ │ ├── led.slint │ │ ├── line-input.slint │ │ ├── link.slint │ │ ├── list-tile.slint │ │ ├── loading.slint │ │ ├── log-in.slint │ │ ├── mnemonic.slint │ │ ├── news.slint │ │ ├── no-data.slint │ │ ├── no-message.slint │ │ ├── pagination.slint │ │ ├── paragraph.slint │ │ ├── password.slint │ │ ├── pin-codes.slint │ │ ├── popup-action.slint │ │ ├── process-step.slint │ │ ├── progress-bar.slint │ │ ├── radio-btn.slint │ │ ├── rate.slint │ │ ├── record-indicator.slint │ │ ├── rename-dialog.slint │ │ ├── replace-dialog.slint │ │ ├── reset-password.slint │ │ ├── search.slint │ │ ├── select.slint │ │ ├── setting-detail.slint │ │ ├── setting-entry.slint │ │ ├── sidebar.slint │ │ ├── sign-in.slint │ │ ├── skeleton.slint │ │ ├── slide-card.slint │ │ ├── slider.slint │ │ ├── status-bar.slint │ │ ├── stretch.slint │ │ ├── switch-btn.slint │ │ ├── tab-btn.slint │ │ ├── tab-btns.slint │ │ ├── tag.slint │ │ ├── text-list.slint │ │ ├── theme.slint │ │ ├── toast.slint │ │ ├── todo-list.slint │ │ ├── token-list.slint │ │ ├── token-recipient.slint │ │ ├── token-sender.slint │ │ ├── token-tile.slint │ │ ├── tooltip.slint │ │ ├── transaction-fee.slint │ │ ├── transaction-tile.slint │ │ ├── tree.slint │ │ ├── txtedit.slint │ │ ├── util.slint │ │ ├── video-control.slint │ │ ├── wait-transaction-confirmed.slint │ │ └── widgets.slint │ ├── desktop-window.slint │ ├── fonts │ │ ├── SourceHanSansCN.otf │ │ └── SourceHanSerifCN.ttf │ ├── images │ │ ├── crypto-currency │ │ │ ├── btc.svg │ │ │ ├── doge.svg │ │ │ ├── eth.svg │ │ │ ├── solana.svg │ │ │ ├── token.svg │ │ │ ├── usdc.svg │ │ │ └── usdt.svg │ │ ├── icons │ │ │ ├── about-fill.svg │ │ │ ├── about-light.svg │ │ │ ├── account-light.svg │ │ │ ├── add-image-light.svg │ │ │ ├── add-light.svg │ │ │ ├── add-with-circle-light.svg │ │ │ ├── add-with-rect-light.svg │ │ │ ├── address-book-light.svg │ │ │ ├── address-light.svg │ │ │ ├── advance-setting-light.svg │ │ │ ├── ai-robot-light.svg │ │ │ ├── airdrop-light.svg │ │ │ ├── announcement-fill.svg │ │ │ ├── archive-fill.svg │ │ │ ├── arrow-down-fill.svg │ │ │ ├── arrow-down-light.svg │ │ │ ├── arrow-forward-light.svg │ │ │ ├── arrow-left-fill.svg │ │ │ ├── arrow-left-light.svg │ │ │ ├── arrow-left-round-light.svg │ │ │ ├── arrow-right-fill.svg │ │ │ ├── arrow-right-light.svg │ │ │ ├── arrow-right-round-light.svg │ │ │ ├── arrow-up-fill.svg │ │ │ ├── arrow-up-light.svg │ │ │ ├── audio-fill.svg │ │ │ ├── audio-light.svg │ │ │ ├── audio-stop-light.svg │ │ │ ├── back-light.svg │ │ │ ├── backup-fill.svg │ │ │ ├── backup-recover-light.svg │ │ │ ├── bot-light.svg │ │ │ ├── broken-image-fill.svg │ │ │ ├── browser-access-light.svg │ │ │ ├── browser-light.svg │ │ │ ├── btn-up-light.svg │ │ │ ├── cache-fill.svg │ │ │ ├── calendar-light.svg │ │ │ ├── cancel-fill.svg │ │ │ ├── cancel-light.svg │ │ │ ├── cell-insert-above-light.svg │ │ │ ├── cell-insert-below-light.svg │ │ │ ├── chat-fill.svg │ │ │ ├── check-box-light.svg │ │ │ ├── checked-light.svg │ │ │ ├── circle-fill.svg │ │ │ ├── clear-fill.svg │ │ │ ├── clear-light.svg │ │ │ ├── close-eye-light.svg │ │ │ ├── close-light.svg │ │ │ ├── close2-light.svg │ │ │ ├── control-start-light.svg │ │ │ ├── control-stop-light.svg │ │ │ ├── convert2text-light.svg │ │ │ ├── copy-fill.svg │ │ │ ├── copy-light.svg │ │ │ ├── correction-light.svg │ │ │ ├── crypto-light.svg │ │ │ ├── cursor-light.svg │ │ │ ├── danger-light.svg │ │ │ ├── data-archive-light.svg │ │ │ ├── debug-light.svg │ │ │ ├── delete-all-light.svg │ │ │ ├── delete-fill.svg │ │ │ ├── delete-light.svg │ │ │ ├── denoise-light.svg │ │ │ ├── developer-light.svg │ │ │ ├── disable-light.svg │ │ │ ├── donate-fill.svg │ │ │ ├── donate-light.svg │ │ │ ├── download-cloud-light.svg │ │ │ ├── download-light.svg │ │ │ ├── edit-light.svg │ │ │ ├── edit-rect-light.svg │ │ │ ├── edit-text-light.svg │ │ │ ├── error-fill.svg │ │ │ ├── exit-full-screen-light.svg │ │ │ ├── export-light.svg │ │ │ ├── export-video-light.svg │ │ │ ├── eye-close-light.svg │ │ │ ├── eye-light.svg │ │ │ ├── favorite-fill.svg │ │ │ ├── feedback-light.svg │ │ │ ├── file-archive-light.svg │ │ │ ├── file-fill.svg │ │ │ ├── file-open-fill.svg │ │ │ ├── file-open-light.svg │ │ │ ├── find-light.svg │ │ │ ├── format-clear-light.svg │ │ │ ├── frameless-window-light.svg │ │ │ ├── full-screen-light.svg │ │ │ ├── github-fill.svg │ │ │ ├── help-fill.svg │ │ │ ├── help-light.svg │ │ │ ├── hide-light.svg │ │ │ ├── history-light.svg │ │ │ ├── home-fill.svg │ │ │ ├── home-light.svg │ │ │ ├── horse-fill.svg │ │ │ ├── image-fill.svg │ │ │ ├── import-light.svg │ │ │ ├── info-fill.svg │ │ │ ├── info-light.svg │ │ │ ├── launching-screen-light.svg │ │ │ ├── list-accept-light.svg │ │ │ ├── list-light.svg │ │ │ ├── loading-light.svg │ │ │ ├── logout-fill.svg │ │ │ ├── logout-light.svg │ │ │ ├── loop-light.svg │ │ │ ├── loop-one-light.svg │ │ │ ├── loop-one2-light.svg │ │ │ ├── management-light.svg │ │ │ ├── max-light.svg │ │ │ ├── mcp-light.svg │ │ │ ├── menu-light.svg │ │ │ ├── merge-above-light.svg │ │ │ ├── metamask-fill.svg │ │ │ ├── metamask-light.svg │ │ │ ├── mnemonic-light.svg │ │ │ ├── model-fill.svg │ │ │ ├── model-light.svg │ │ │ ├── monitor-recorder-fill.svg │ │ │ ├── monitor-recorder-light.svg │ │ │ ├── more-h-light.svg │ │ │ ├── more-v-light.svg │ │ │ ├── move-light.svg │ │ │ ├── mute-fill.svg │ │ │ ├── mute-light.svg │ │ │ ├── network-activity-light.svg │ │ │ ├── network-light.svg │ │ │ ├── new-chat-fill.svg │ │ │ ├── new-fill.svg │ │ │ ├── next-fill.svg │ │ │ ├── next-light.svg │ │ │ ├── no-data-fill.svg │ │ │ ├── no-image-fill.svg │ │ │ ├── no-message-fill.svg │ │ │ ├── noeye-light.svg │ │ │ ├── notify-fill.svg │ │ │ ├── notify-light.svg │ │ │ ├── ok-fill.svg │ │ │ ├── open-file-light.svg │ │ │ ├── optimize-light.svg │ │ │ ├── password-light.svg │ │ │ ├── paste-light.svg │ │ │ ├── pending-fill.svg │ │ │ ├── plan-fill.svg │ │ │ ├── plan-light.svg │ │ │ ├── play-once-light.svg │ │ │ ├── polish-fill.svg │ │ │ ├── preview-light.svg │ │ │ ├── prompt-fill.svg │ │ │ ├── prompt-light.svg │ │ │ ├── proxy-light.svg │ │ │ ├── qrcode-light.svg │ │ │ ├── rabbit-fill.svg │ │ │ ├── reading-fill.svg │ │ │ ├── reasoner-light.svg │ │ │ ├── receive-fill.svg │ │ │ ├── recipient-light.svg │ │ │ ├── record-fill.svg │ │ │ ├── record-off-light.svg │ │ │ ├── recording-fill.svg │ │ │ ├── recover-fill.svg │ │ │ ├── recover-from-trash-light.svg │ │ │ ├── recover-light.svg │ │ │ ├── refresh-fill.svg │ │ │ ├── refresh-light.svg │ │ │ ├── rename.py │ │ │ ├── replace-light.svg │ │ │ ├── reset-in-trash-light.svg │ │ │ ├── retry-fill.svg │ │ │ ├── rss-fill.svg │ │ │ ├── rss-light.svg │ │ │ ├── save-archive-light.svg │ │ │ ├── save-fill.svg │ │ │ ├── screen-fill.svg │ │ │ ├── search-light.svg │ │ │ ├── security-fill.svg │ │ │ ├── send-right-fill.svg │ │ │ ├── send-up-fill.svg │ │ │ ├── setting-fill.svg │ │ │ ├── setting-light.svg │ │ │ ├── shuffle-light.svg │ │ │ ├── simple-chinese-light.svg │ │ │ ├── skip-next-light.svg │ │ │ ├── skull-fill.svg │ │ │ ├── sort-line-light.svg │ │ │ ├── sort-line2-light.svg │ │ │ ├── sound-off-fill.svg │ │ │ ├── sound-on-fill.svg │ │ │ ├── speak-light.svg │ │ │ ├── speaker-fill.svg │ │ │ ├── speaker-light.svg │ │ │ ├── split-down-light.svg │ │ │ ├── stack-overflow-fill.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-round-fill.svg │ │ │ ├── statistic-fill.svg │ │ │ ├── status-bar-close-fill.svg │ │ │ ├── status-bar-max-fill.svg │ │ │ ├── status-bar-min-fill.svg │ │ │ ├── status-bar-normal-fill.svg │ │ │ ├── stop-light.svg │ │ │ ├── subtitle-light.svg │ │ │ ├── success-fill.svg │ │ │ ├── success-light.svg │ │ │ ├── switch-light.svg │ │ │ ├── sync-failed-light.svg │ │ │ ├── sync-light.svg │ │ │ ├── test-network-light.svg │ │ │ ├── text-light.svg │ │ │ ├── traditional-to-simple-chinese-light.svg │ │ │ ├── transcribe-fill.svg │ │ │ ├── translation-light.svg │ │ │ ├── turtle-fill.svg │ │ │ ├── ui-light.svg │ │ │ ├── uninstall-fill.svg │ │ │ ├── unsubtitle-light.svg │ │ │ ├── up-circle-light.svg │ │ │ ├── up-rect-light.svg │ │ │ ├── upload-cloud-light.svg │ │ │ ├── user-fill.svg │ │ │ ├── version-light.svg │ │ │ ├── video-fill.svg │ │ │ ├── video-light.svg │ │ │ ├── voiceprint-light.svg │ │ │ ├── warning-light.svg │ │ │ ├── wechat-fill.svg │ │ │ ├── wechat-light.svg │ │ │ ├── zoom-in-light.svg │ │ │ └── zoom-out-light.svg │ │ ├── landing │ │ │ ├── landing-account.svg │ │ │ ├── landing-language-switch.svg │ │ │ ├── landing-reading.svg │ │ │ ├── landing-send.svg │ │ │ ├── landing-subscription.svg │ │ │ └── landing-welcome.svg │ │ └── png │ │ │ ├── brand.png │ │ │ ├── github-action-release.png │ │ │ ├── metamask-pay.png │ │ │ └── wechat-pay.png │ ├── logic.slint │ ├── panel │ │ ├── def.slint │ │ ├── desktop │ │ │ ├── desktop.slint │ │ │ ├── examples │ │ │ │ ├── about.slint │ │ │ │ ├── account-balance.slint │ │ │ │ ├── address-book.slint │ │ │ │ ├── audio-control.slint │ │ │ │ ├── avatar.slint │ │ │ │ ├── badge.slint │ │ │ │ ├── banner.slint │ │ │ │ ├── blanket.slint │ │ │ │ ├── brand.slint │ │ │ │ ├── bread-crumb.slint │ │ │ │ ├── button.slint │ │ │ │ ├── center-layout.slint │ │ │ │ ├── chart-bar.slint │ │ │ │ ├── collapse.slint │ │ │ │ ├── date-picker.slint │ │ │ │ ├── dialog.slint │ │ │ │ ├── divider.slint │ │ │ │ ├── drawer.slint │ │ │ │ ├── empty.slint │ │ │ │ ├── flickable-with-scrollbar.slint │ │ │ │ ├── head.slint │ │ │ │ ├── help.slint │ │ │ │ ├── input.slint │ │ │ │ ├── introducion.slint │ │ │ │ ├── label.slint │ │ │ │ ├── landing-page.slint │ │ │ │ ├── link.slint │ │ │ │ ├── list-tile.slint │ │ │ │ ├── loading.slint │ │ │ │ ├── log-in.slint │ │ │ │ ├── mnemonic.slint │ │ │ │ ├── news.slint │ │ │ │ ├── pagination.slint │ │ │ │ ├── paragraph.slint │ │ │ │ ├── password.slint │ │ │ │ ├── pin-codes.slint │ │ │ │ ├── popup-action.slint │ │ │ │ ├── progress.slint │ │ │ │ ├── rate.slint │ │ │ │ ├── record-indicator.slint │ │ │ │ ├── reset-password.slint │ │ │ │ ├── select.slint │ │ │ │ ├── setting.slint │ │ │ │ ├── sidebar.slint │ │ │ │ ├── sign-in.slint │ │ │ │ ├── skeleton.slint │ │ │ │ ├── slide-card.slint │ │ │ │ ├── slider.slint │ │ │ │ ├── status-bar.slint │ │ │ │ ├── step.slint │ │ │ │ ├── stretch.slint │ │ │ │ ├── tab-btn.slint │ │ │ │ ├── tag.slint │ │ │ │ ├── toast.slint │ │ │ │ ├── todo-list.slint │ │ │ │ ├── token-list.slint │ │ │ │ ├── token-recipient.slint │ │ │ │ ├── token-sender.slint │ │ │ │ ├── tooltip.slint │ │ │ │ ├── transaction-fee.slint │ │ │ │ ├── transaction-tile.slint │ │ │ │ ├── tree.slint │ │ │ │ ├── video-control.slint │ │ │ │ └── wait-transaction-confirmed.slint │ │ │ └── home.slint │ │ ├── mobile │ │ │ ├── footer.slint │ │ │ ├── home.slint │ │ │ └── mobile.slint │ │ ├── setting │ │ │ ├── components │ │ │ │ ├── ai-model.slint │ │ │ │ ├── backup.slint │ │ │ │ ├── donate.slint │ │ │ │ ├── help-detail.slint │ │ │ │ ├── preference.slint │ │ │ │ └── proxy.slint │ │ │ ├── desktop.slint │ │ │ └── mobile.slint │ │ └── web │ │ │ ├── home.slint │ │ │ └── web.slint │ ├── store.slint │ └── web-window.slint ├── web │ └── index.html └── windows │ ├── icon.ico │ ├── icon.rc │ └── version.h └── tr-helper ├── Cargo.toml ├── README.md ├── build.rs └── src ├── main.rs └── tr.rs /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.rooter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/flake.nix -------------------------------------------------------------------------------- /icon-helper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/icon-helper/Cargo.toml -------------------------------------------------------------------------------- /icon-helper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/icon-helper/src/main.rs -------------------------------------------------------------------------------- /lib/cutil/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /lib/cutil/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/Cargo.lock -------------------------------------------------------------------------------- /lib/cutil/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/Cargo.toml -------------------------------------------------------------------------------- /lib/cutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/README.md -------------------------------------------------------------------------------- /lib/cutil/src/backup_recover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/backup_recover.rs -------------------------------------------------------------------------------- /lib/cutil/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/crypto.rs -------------------------------------------------------------------------------- /lib/cutil/src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/fs.rs -------------------------------------------------------------------------------- /lib/cutil/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/http.rs -------------------------------------------------------------------------------- /lib/cutil/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/lib.rs -------------------------------------------------------------------------------- /lib/cutil/src/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/number.rs -------------------------------------------------------------------------------- /lib/cutil/src/str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/str.rs -------------------------------------------------------------------------------- /lib/cutil/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/time.rs -------------------------------------------------------------------------------- /lib/cutil/src/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/cutil/src/vec.rs -------------------------------------------------------------------------------- /lib/pmacro/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /lib/pmacro/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/Cargo.lock -------------------------------------------------------------------------------- /lib/pmacro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/Cargo.toml -------------------------------------------------------------------------------- /lib/pmacro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/README.md -------------------------------------------------------------------------------- /lib/pmacro/examples/pmacro_demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/examples/pmacro_demo.rs -------------------------------------------------------------------------------- /lib/pmacro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/src/lib.rs -------------------------------------------------------------------------------- /lib/pmacro/tests/integration_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/pmacro/tests/integration_tests.rs -------------------------------------------------------------------------------- /lib/sqldb/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /lib/sqldb/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/sqldb/Cargo.lock -------------------------------------------------------------------------------- /lib/sqldb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/sqldb/Cargo.toml -------------------------------------------------------------------------------- /lib/sqldb/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/sqldb/src/entry.rs -------------------------------------------------------------------------------- /lib/sqldb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/lib/sqldb/src/lib.rs -------------------------------------------------------------------------------- /package/deb/.gitignore: -------------------------------------------------------------------------------- 1 | *.deb 2 | -------------------------------------------------------------------------------- /package/deb/.rooter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/deb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/package/deb/README.md -------------------------------------------------------------------------------- /package/deb/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/package/deb/init.sh -------------------------------------------------------------------------------- /package/deb/package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/package/deb/package/DEBIAN/control -------------------------------------------------------------------------------- /package/deb/package/DEBIAN/copyright: -------------------------------------------------------------------------------- 1 | Files: * 2 | Copyright: 2025-2035 3 | License: MIT 4 | -------------------------------------------------------------------------------- /package/deb/package/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "install complete!" 4 | exit 0 5 | -------------------------------------------------------------------------------- /package/deb/package/DEBIAN/preinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "run before setup" 4 | -------------------------------------------------------------------------------- /package/deb/package/usr/share/applications/slint-template.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/package/deb/package/usr/share/applications/slint-template.desktop -------------------------------------------------------------------------------- /package/deb/pkg-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/package/deb/pkg-deb.sh -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /screenshot/1-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/1-cn.png -------------------------------------------------------------------------------- /screenshot/1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/1-en.png -------------------------------------------------------------------------------- /screenshot/2-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/2-cn.png -------------------------------------------------------------------------------- /screenshot/2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/2-en.png -------------------------------------------------------------------------------- /screenshot/3-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/3-cn.png -------------------------------------------------------------------------------- /screenshot/3-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/3-en.png -------------------------------------------------------------------------------- /screenshot/4-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/4-cn.png -------------------------------------------------------------------------------- /screenshot/4-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/4-en.png -------------------------------------------------------------------------------- /screenshot/5-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/5-cn.png -------------------------------------------------------------------------------- /screenshot/5-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/5-en.png -------------------------------------------------------------------------------- /screenshot/6-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/6-cn.png -------------------------------------------------------------------------------- /screenshot/6-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/6-en.png -------------------------------------------------------------------------------- /screenshot/7-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/7-cn.png -------------------------------------------------------------------------------- /screenshot/7-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/screenshot/7-en.png -------------------------------------------------------------------------------- /script/.gitignore: -------------------------------------------------------------------------------- 1 | ./json 2 | ./re 3 | -------------------------------------------------------------------------------- /script/convert-brand-to-window-icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/script/convert-brand-to-window-icon.sh -------------------------------------------------------------------------------- /script/init-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/script/init-project.sh -------------------------------------------------------------------------------- /script/merge-to-slint-template-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/script/merge-to-slint-template-project.sh -------------------------------------------------------------------------------- /script/replace-android-icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/script/replace-android-icon.sh -------------------------------------------------------------------------------- /script/replace-android-splash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/script/replace-android-splash.sh -------------------------------------------------------------------------------- /slint-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/.gitignore -------------------------------------------------------------------------------- /slint-template/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/Cargo.toml -------------------------------------------------------------------------------- /slint-template/android/keystore/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/keystore/debug.keystore -------------------------------------------------------------------------------- /slint-template/android/keystore/release.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/keystore/release.keystore -------------------------------------------------------------------------------- /slint-template/android/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-v21/background.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable/background.png -------------------------------------------------------------------------------- /slint-template/android/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /slint-template/android/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/layout/activity_main.xml -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /slint-template/android/res/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/values-v31/colors.xml -------------------------------------------------------------------------------- /slint-template/android/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/values-v31/styles.xml -------------------------------------------------------------------------------- /slint-template/android/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/values/colors.xml -------------------------------------------------------------------------------- /slint-template/android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/android/res/values/styles.xml -------------------------------------------------------------------------------- /slint-template/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/build.rs -------------------------------------------------------------------------------- /slint-template/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/config.rs -------------------------------------------------------------------------------- /slint-template/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/db.rs -------------------------------------------------------------------------------- /slint-template/src/desktop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/desktop.rs -------------------------------------------------------------------------------- /slint-template/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/lib.rs -------------------------------------------------------------------------------- /slint-template/src/logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic.rs -------------------------------------------------------------------------------- /slint-template/src/logic/about.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/about.rs -------------------------------------------------------------------------------- /slint-template/src/logic/clipboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/clipboard.rs -------------------------------------------------------------------------------- /slint-template/src/logic/confirm_dialog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/confirm_dialog.rs -------------------------------------------------------------------------------- /slint-template/src/logic/examples_desktop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/examples_desktop.rs -------------------------------------------------------------------------------- /slint-template/src/logic/examples_mobile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/examples_mobile.rs -------------------------------------------------------------------------------- /slint-template/src/logic/examples_web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/examples_web.rs -------------------------------------------------------------------------------- /slint-template/src/logic/popup_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/popup_action.rs -------------------------------------------------------------------------------- /slint-template/src/logic/setting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/setting.rs -------------------------------------------------------------------------------- /slint-template/src/logic/toast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/toast.rs -------------------------------------------------------------------------------- /slint-template/src/logic/tr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/tr.rs -------------------------------------------------------------------------------- /slint-template/src/logic/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/src/logic/util.rs -------------------------------------------------------------------------------- /slint-template/src/version.rs: -------------------------------------------------------------------------------- 1 | pub static VERSION: &str = "v0.2.0"; -------------------------------------------------------------------------------- /slint-template/ui/android-window.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/android-window.slint -------------------------------------------------------------------------------- /slint-template/ui/base/about.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/about.slint -------------------------------------------------------------------------------- /slint-template/ui/base/account-balance.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/account-balance.slint -------------------------------------------------------------------------------- /slint-template/ui/base/address-book.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/address-book.slint -------------------------------------------------------------------------------- /slint-template/ui/base/audio-control.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/audio-control.slint -------------------------------------------------------------------------------- /slint-template/ui/base/audio-level.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/audio-level.slint -------------------------------------------------------------------------------- /slint-template/ui/base/avatar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/avatar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/badge.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/badge.slint -------------------------------------------------------------------------------- /slint-template/ui/base/banner.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/banner.slint -------------------------------------------------------------------------------- /slint-template/ui/base/blank-welcome.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/blank-welcome.slint -------------------------------------------------------------------------------- /slint-template/ui/base/blanket.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/blanket.slint -------------------------------------------------------------------------------- /slint-template/ui/base/brand.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/brand.slint -------------------------------------------------------------------------------- /slint-template/ui/base/bread-crumb.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/bread-crumb.slint -------------------------------------------------------------------------------- /slint-template/ui/base/btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/center-layout.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/center-layout.slint -------------------------------------------------------------------------------- /slint-template/ui/base/chartbar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/chartbar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/check-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/check-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/circle-progress.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/circle-progress.slint -------------------------------------------------------------------------------- /slint-template/ui/base/collapse.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/collapse.slint -------------------------------------------------------------------------------- /slint-template/ui/base/confirm-dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/confirm-dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/dash-line.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/dash-line.slint -------------------------------------------------------------------------------- /slint-template/ui/base/date-picker.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/date-picker.slint -------------------------------------------------------------------------------- /slint-template/ui/base/def.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/def.slint -------------------------------------------------------------------------------- /slint-template/ui/base/dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/divider.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/divider.slint -------------------------------------------------------------------------------- /slint-template/ui/base/drawer.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/drawer.slint -------------------------------------------------------------------------------- /slint-template/ui/base/elevated-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/elevated-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/example-component.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/example-component.slint -------------------------------------------------------------------------------- /slint-template/ui/base/file-picker.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/file-picker.slint -------------------------------------------------------------------------------- /slint-template/ui/base/flash-progress.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/flash-progress.slint -------------------------------------------------------------------------------- /slint-template/ui/base/flickable-with-scrollbar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/flickable-with-scrollbar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/gain-focus.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/gain-focus.slint -------------------------------------------------------------------------------- /slint-template/ui/base/group-box.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/group-box.slint -------------------------------------------------------------------------------- /slint-template/ui/base/head.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/head.slint -------------------------------------------------------------------------------- /slint-template/ui/base/help.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/help.slint -------------------------------------------------------------------------------- /slint-template/ui/base/icon-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icon-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/icon.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icon.slint -------------------------------------------------------------------------------- /slint-template/ui/base/icons-dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons-dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/icons/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/1.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/10.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/11.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/12.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/13.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/14.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/15.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/16.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/17.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/18.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/19.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/2.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/20.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/21.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/22.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/23.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/24.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/25.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/26.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/27.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/28.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/29.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/3.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/30.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/31.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/32.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/33.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/34.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/35.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/36.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/37.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/38.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/39.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/4.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/40.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/41.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/42.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/43.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/44.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/45.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/46.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/47.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/48.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/49.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/5.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/50.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/6.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/7.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/8.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/9.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led0.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led1.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led2.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led3.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led4.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led5.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led6.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led7.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led8.svg -------------------------------------------------------------------------------- /slint-template/ui/base/icons/led9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/icons/led9.svg -------------------------------------------------------------------------------- /slint-template/ui/base/label.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/label.slint -------------------------------------------------------------------------------- /slint-template/ui/base/landing-page.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/landing-page.slint -------------------------------------------------------------------------------- /slint-template/ui/base/language-dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/language-dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/led.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/led.slint -------------------------------------------------------------------------------- /slint-template/ui/base/line-input.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/line-input.slint -------------------------------------------------------------------------------- /slint-template/ui/base/link.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/link.slint -------------------------------------------------------------------------------- /slint-template/ui/base/list-tile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/list-tile.slint -------------------------------------------------------------------------------- /slint-template/ui/base/loading.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/loading.slint -------------------------------------------------------------------------------- /slint-template/ui/base/log-in.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/log-in.slint -------------------------------------------------------------------------------- /slint-template/ui/base/mnemonic.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/mnemonic.slint -------------------------------------------------------------------------------- /slint-template/ui/base/news.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/news.slint -------------------------------------------------------------------------------- /slint-template/ui/base/no-data.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/no-data.slint -------------------------------------------------------------------------------- /slint-template/ui/base/no-message.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/no-message.slint -------------------------------------------------------------------------------- /slint-template/ui/base/pagination.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/pagination.slint -------------------------------------------------------------------------------- /slint-template/ui/base/paragraph.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/paragraph.slint -------------------------------------------------------------------------------- /slint-template/ui/base/password.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/password.slint -------------------------------------------------------------------------------- /slint-template/ui/base/pin-codes.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/pin-codes.slint -------------------------------------------------------------------------------- /slint-template/ui/base/popup-action.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/popup-action.slint -------------------------------------------------------------------------------- /slint-template/ui/base/process-step.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/process-step.slint -------------------------------------------------------------------------------- /slint-template/ui/base/progress-bar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/progress-bar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/radio-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/radio-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/rate.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/rate.slint -------------------------------------------------------------------------------- /slint-template/ui/base/record-indicator.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/record-indicator.slint -------------------------------------------------------------------------------- /slint-template/ui/base/rename-dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/rename-dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/replace-dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/replace-dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/base/reset-password.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/reset-password.slint -------------------------------------------------------------------------------- /slint-template/ui/base/search.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/search.slint -------------------------------------------------------------------------------- /slint-template/ui/base/select.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/select.slint -------------------------------------------------------------------------------- /slint-template/ui/base/setting-detail.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/setting-detail.slint -------------------------------------------------------------------------------- /slint-template/ui/base/setting-entry.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/setting-entry.slint -------------------------------------------------------------------------------- /slint-template/ui/base/sidebar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/sidebar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/sign-in.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/sign-in.slint -------------------------------------------------------------------------------- /slint-template/ui/base/skeleton.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/skeleton.slint -------------------------------------------------------------------------------- /slint-template/ui/base/slide-card.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/slide-card.slint -------------------------------------------------------------------------------- /slint-template/ui/base/slider.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/slider.slint -------------------------------------------------------------------------------- /slint-template/ui/base/status-bar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/status-bar.slint -------------------------------------------------------------------------------- /slint-template/ui/base/stretch.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/stretch.slint -------------------------------------------------------------------------------- /slint-template/ui/base/switch-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/switch-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/tab-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/tab-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/base/tab-btns.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/tab-btns.slint -------------------------------------------------------------------------------- /slint-template/ui/base/tag.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/tag.slint -------------------------------------------------------------------------------- /slint-template/ui/base/text-list.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/text-list.slint -------------------------------------------------------------------------------- /slint-template/ui/base/theme.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/theme.slint -------------------------------------------------------------------------------- /slint-template/ui/base/toast.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/toast.slint -------------------------------------------------------------------------------- /slint-template/ui/base/todo-list.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/todo-list.slint -------------------------------------------------------------------------------- /slint-template/ui/base/token-list.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/token-list.slint -------------------------------------------------------------------------------- /slint-template/ui/base/token-recipient.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/token-recipient.slint -------------------------------------------------------------------------------- /slint-template/ui/base/token-sender.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/token-sender.slint -------------------------------------------------------------------------------- /slint-template/ui/base/token-tile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/token-tile.slint -------------------------------------------------------------------------------- /slint-template/ui/base/tooltip.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/tooltip.slint -------------------------------------------------------------------------------- /slint-template/ui/base/transaction-fee.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/transaction-fee.slint -------------------------------------------------------------------------------- /slint-template/ui/base/transaction-tile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/transaction-tile.slint -------------------------------------------------------------------------------- /slint-template/ui/base/tree.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/tree.slint -------------------------------------------------------------------------------- /slint-template/ui/base/txtedit.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/txtedit.slint -------------------------------------------------------------------------------- /slint-template/ui/base/util.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/util.slint -------------------------------------------------------------------------------- /slint-template/ui/base/video-control.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/video-control.slint -------------------------------------------------------------------------------- /slint-template/ui/base/wait-transaction-confirmed.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/wait-transaction-confirmed.slint -------------------------------------------------------------------------------- /slint-template/ui/base/widgets.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/base/widgets.slint -------------------------------------------------------------------------------- /slint-template/ui/desktop-window.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/desktop-window.slint -------------------------------------------------------------------------------- /slint-template/ui/fonts/SourceHanSansCN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/fonts/SourceHanSansCN.otf -------------------------------------------------------------------------------- /slint-template/ui/fonts/SourceHanSerifCN.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/fonts/SourceHanSerifCN.ttf -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/btc.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/doge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/doge.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/eth.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/solana.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/token.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/usdc.svg -------------------------------------------------------------------------------- /slint-template/ui/images/crypto-currency/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/crypto-currency/usdt.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/about-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/about-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/about-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/about-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/account-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/account-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/add-image-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/add-image-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/add-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/add-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/add-with-circle-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/add-with-circle-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/add-with-rect-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/add-with-rect-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/address-book-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/address-book-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/address-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/address-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/advance-setting-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/advance-setting-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/ai-robot-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/ai-robot-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/airdrop-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/airdrop-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/announcement-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/announcement-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/archive-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/archive-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-down-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-down-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-down-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-down-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-forward-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-forward-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-left-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-left-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-left-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-left-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-left-round-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-left-round-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-right-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-right-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-right-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-right-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-right-round-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-right-round-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-up-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-up-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/arrow-up-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/arrow-up-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/audio-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/audio-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/audio-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/audio-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/audio-stop-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/audio-stop-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/back-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/back-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/backup-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/backup-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/backup-recover-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/backup-recover-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/bot-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/bot-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/broken-image-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/broken-image-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/browser-access-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/browser-access-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/browser-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/browser-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/btn-up-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/btn-up-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cache-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cache-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/calendar-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/calendar-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cancel-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cancel-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cancel-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cancel-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cell-insert-above-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cell-insert-above-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cell-insert-below-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cell-insert-below-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/chat-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/chat-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/check-box-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/check-box-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/checked-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/checked-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/circle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/circle-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/clear-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/clear-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/clear-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/clear-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/close-eye-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/close-eye-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/close-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/close-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/close2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/close2-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/control-start-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/control-start-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/control-stop-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/control-stop-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/convert2text-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/convert2text-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/copy-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/copy-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/copy-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/copy-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/correction-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/correction-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/crypto-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/crypto-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/cursor-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/cursor-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/danger-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/danger-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/data-archive-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/data-archive-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/debug-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/debug-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/delete-all-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/delete-all-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/delete-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/delete-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/delete-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/delete-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/denoise-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/denoise-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/developer-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/developer-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/disable-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/disable-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/donate-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/donate-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/donate-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/donate-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/download-cloud-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/download-cloud-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/download-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/download-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/edit-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/edit-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/edit-rect-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/edit-rect-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/edit-text-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/edit-text-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/error-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/error-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/exit-full-screen-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/exit-full-screen-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/export-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/export-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/export-video-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/export-video-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/eye-close-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/eye-close-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/eye-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/eye-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/favorite-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/favorite-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/feedback-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/feedback-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/file-archive-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/file-archive-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/file-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/file-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/file-open-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/file-open-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/file-open-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/file-open-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/find-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/find-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/format-clear-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/format-clear-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/frameless-window-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/frameless-window-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/full-screen-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/full-screen-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/github-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/github-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/help-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/help-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/help-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/help-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/hide-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/hide-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/history-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/history-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/home-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/home-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/home-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/home-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/horse-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/horse-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/image-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/image-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/import-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/import-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/info-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/info-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/info-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/info-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/launching-screen-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/launching-screen-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/list-accept-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/list-accept-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/list-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/list-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/loading-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/loading-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/logout-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/logout-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/logout-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/logout-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/loop-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/loop-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/loop-one-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/loop-one-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/loop-one2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/loop-one2-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/management-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/management-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/max-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/max-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/mcp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/mcp-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/menu-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/menu-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/merge-above-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/merge-above-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/metamask-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/metamask-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/metamask-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/metamask-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/mnemonic-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/mnemonic-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/model-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/model-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/model-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/model-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/monitor-recorder-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/monitor-recorder-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/monitor-recorder-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/monitor-recorder-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/more-h-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/more-h-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/more-v-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/more-v-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/move-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/move-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/mute-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/mute-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/mute-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/mute-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/network-activity-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/network-activity-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/network-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/network-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/new-chat-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/new-chat-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/new-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/new-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/next-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/next-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/next-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/next-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/no-data-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/no-data-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/no-image-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/no-image-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/no-message-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/no-message-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/noeye-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/noeye-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/notify-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/notify-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/notify-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/notify-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/ok-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/ok-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/open-file-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/open-file-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/optimize-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/optimize-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/password-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/password-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/paste-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/paste-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/pending-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/pending-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/plan-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/plan-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/plan-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/plan-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/play-once-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/play-once-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/polish-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/polish-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/preview-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/preview-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/prompt-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/prompt-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/prompt-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/prompt-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/proxy-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/proxy-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/qrcode-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/qrcode-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/rabbit-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/rabbit-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/reading-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/reading-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/reasoner-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/reasoner-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/receive-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/receive-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/recipient-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/recipient-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/record-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/record-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/record-off-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/record-off-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/recording-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/recording-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/recover-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/recover-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/recover-from-trash-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/recover-from-trash-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/recover-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/recover-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/refresh-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/refresh-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/refresh-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/refresh-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/rename.py -------------------------------------------------------------------------------- /slint-template/ui/images/icons/replace-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/replace-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/reset-in-trash-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/reset-in-trash-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/retry-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/retry-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/rss-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/rss-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/rss-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/rss-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/save-archive-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/save-archive-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/save-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/save-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/screen-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/screen-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/search-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/search-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/security-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/security-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/send-right-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/send-right-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/send-up-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/send-up-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/setting-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/setting-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/setting-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/setting-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/shuffle-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/shuffle-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/simple-chinese-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/simple-chinese-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/skip-next-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/skip-next-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/skull-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/skull-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sort-line-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sort-line-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sort-line2-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sort-line2-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sound-off-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sound-off-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sound-on-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sound-on-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/speak-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/speak-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/speaker-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/speaker-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/speaker-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/speaker-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/split-down-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/split-down-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/stack-overflow-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/stack-overflow-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/star-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/star-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/star-round-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/star-round-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/statistic-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/statistic-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/status-bar-close-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/status-bar-close-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/status-bar-max-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/status-bar-max-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/status-bar-min-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/status-bar-min-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/status-bar-normal-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/status-bar-normal-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/stop-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/stop-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/subtitle-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/subtitle-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/success-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/success-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/success-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/success-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/switch-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/switch-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sync-failed-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sync-failed-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/sync-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/sync-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/test-network-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/test-network-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/text-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/text-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/traditional-to-simple-chinese-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/traditional-to-simple-chinese-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/transcribe-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/transcribe-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/translation-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/translation-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/turtle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/turtle-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/ui-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/ui-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/uninstall-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/uninstall-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/unsubtitle-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/unsubtitle-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/up-circle-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/up-circle-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/up-rect-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/up-rect-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/upload-cloud-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/upload-cloud-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/user-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/user-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/version-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/version-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/video-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/video-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/video-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/video-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/voiceprint-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/voiceprint-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/warning-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/warning-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/wechat-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/wechat-fill.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/wechat-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/wechat-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/zoom-in-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/zoom-in-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/icons/zoom-out-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/icons/zoom-out-light.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-account.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-language-switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-language-switch.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-reading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-reading.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-send.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-subscription.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-subscription.svg -------------------------------------------------------------------------------- /slint-template/ui/images/landing/landing-welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/landing/landing-welcome.svg -------------------------------------------------------------------------------- /slint-template/ui/images/png/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/png/brand.png -------------------------------------------------------------------------------- /slint-template/ui/images/png/github-action-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/png/github-action-release.png -------------------------------------------------------------------------------- /slint-template/ui/images/png/metamask-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/png/metamask-pay.png -------------------------------------------------------------------------------- /slint-template/ui/images/png/wechat-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/images/png/wechat-pay.png -------------------------------------------------------------------------------- /slint-template/ui/logic.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/logic.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/def.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/def.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/desktop.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/desktop.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/about.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/about.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/account-balance.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/account-balance.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/address-book.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/address-book.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/audio-control.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/audio-control.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/avatar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/avatar.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/badge.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/badge.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/banner.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/banner.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/blanket.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/blanket.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/brand.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/brand.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/bread-crumb.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/bread-crumb.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/button.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/button.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/center-layout.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/center-layout.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/chart-bar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/chart-bar.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/collapse.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/collapse.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/date-picker.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/date-picker.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/dialog.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/dialog.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/divider.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/divider.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/drawer.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/drawer.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/empty.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/empty.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/flickable-with-scrollbar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/flickable-with-scrollbar.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/head.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/head.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/help.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/help.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/input.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/input.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/introducion.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/introducion.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/label.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/label.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/landing-page.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/landing-page.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/link.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/link.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/list-tile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/list-tile.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/loading.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/loading.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/log-in.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/log-in.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/mnemonic.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/mnemonic.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/news.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/news.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/pagination.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/pagination.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/paragraph.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/paragraph.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/password.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/password.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/pin-codes.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/pin-codes.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/popup-action.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/popup-action.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/progress.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/progress.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/rate.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/rate.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/record-indicator.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/record-indicator.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/reset-password.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/reset-password.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/select.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/select.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/setting.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/setting.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/sidebar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/sidebar.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/sign-in.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/sign-in.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/skeleton.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/skeleton.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/slide-card.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/slide-card.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/slider.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/slider.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/status-bar.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/status-bar.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/step.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/step.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/stretch.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/stretch.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/tab-btn.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/tab-btn.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/tag.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/tag.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/toast.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/toast.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/todo-list.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/todo-list.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/token-list.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/token-list.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/token-recipient.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/token-recipient.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/token-sender.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/token-sender.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/tooltip.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/tooltip.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/transaction-fee.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/transaction-fee.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/transaction-tile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/transaction-tile.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/tree.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/tree.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/video-control.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/video-control.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/examples/wait-transaction-confirmed.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/examples/wait-transaction-confirmed.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/desktop/home.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/desktop/home.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/mobile/footer.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/mobile/footer.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/mobile/home.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/mobile/home.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/mobile/mobile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/mobile/mobile.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/ai-model.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/ai-model.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/backup.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/backup.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/donate.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/donate.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/help-detail.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/help-detail.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/preference.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/preference.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/components/proxy.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/components/proxy.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/desktop.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/desktop.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/setting/mobile.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/setting/mobile.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/web/home.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/web/home.slint -------------------------------------------------------------------------------- /slint-template/ui/panel/web/web.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/panel/web/web.slint -------------------------------------------------------------------------------- /slint-template/ui/store.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/store.slint -------------------------------------------------------------------------------- /slint-template/ui/web-window.slint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/ui/web-window.slint -------------------------------------------------------------------------------- /slint-template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/web/index.html -------------------------------------------------------------------------------- /slint-template/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/windows/icon.ico -------------------------------------------------------------------------------- /slint-template/windows/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/windows/icon.rc -------------------------------------------------------------------------------- /slint-template/windows/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/slint-template/windows/version.h -------------------------------------------------------------------------------- /tr-helper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/tr-helper/Cargo.toml -------------------------------------------------------------------------------- /tr-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/tr-helper/README.md -------------------------------------------------------------------------------- /tr-helper/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/tr-helper/build.rs -------------------------------------------------------------------------------- /tr-helper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/tr-helper/src/main.rs -------------------------------------------------------------------------------- /tr-helper/src/tr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heng30/slint-template/HEAD/tr-helper/src/tr.rs --------------------------------------------------------------------------------