UI toolkit
The stack component allows for stacking multiple html elements and remove them one by one based on a certain action (like a swipe).
<skim-stack>
...
</skim-stack>
<ion-button onclick="stack.next()">Next</ion-button>
<script>
const stack = document.querySelector('skim-stack')
stack.addEventListener('empty', () => console.log('Stack is empty'));
</script>
Event | Description | Type |
---|---|---|
empty |
Emitted when stack is empty | CustomEvent<void> |
next() => Promise<CustomEvent<void>>
Remove current element and display the next
Type: Promise<CustomEvent<void>>
Built with StencilJS