Last active
January 28, 2021 08:34
-
-
Save salmanyaqoob/924ef06b6b34c3fe6a5a49f8305b4018 to your computer and use it in GitHub Desktop.
Index Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <stack class="stack"> | |
| <image src='/common/background.png' class="background"></image> | |
| <div class="container" onswipe="touchMove"> | |
| <list class="showList"> | |
| <list-item class="showListItem" onclick="openPage('arrays/arrays')"> | |
| <text> | |
| Array | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('animator/animator')"> | |
| <text> | |
| Animator | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('cssAnimation/cssAnimation')"> | |
| <text> | |
| CSS Animation | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('swiperScreen/swiperScreen')"> | |
| <text> | |
| Swiper | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('progressScreen/progressScreen')"> | |
| <text> | |
| Progress | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('sliderScreen/sliderScreen')"> | |
| <text> | |
| Slider / Switch | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('pickerScreen/pickerScreen')"> | |
| <text> | |
| Picker | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('storageScreen/storageScreen')"> | |
| <text> | |
| Storage | |
| </text> | |
| </list-item> | |
| <list-item class="showListItem" onclick="openPage('sensorScreen/sensorScreen')"> | |
| <text> | |
| Sensor | |
| </text> | |
| </list-item> | |
| </list> | |
| </div> | |
| </stack> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment