Last time I discussed the details of error handling and animating these when building an application with Phoenix Liveview. At mave, we care about those details and you probably do too. Otherwise, you wouldn’t be reading this. Today we’ll dive into another topic we’ve tackled: page transitions.
We really love Phoenix LiveView here at mave. Your focus, even as backend developer, moves towards little interactions that have impact and makes your product feel solid. We just need small changes to get the result consistently throughout our app. Let’s take a look at error handling with Phoenix’ LiveView form.
1
2
3
4
5
<script type="module">
import { Player } from "https://cdn.video-dns.com/npm/@maveio/components/+esm";
</script>
<mave-player embed="ubg50Cq5Ilpnar1"></mave-player>
<script type="module">
import { Player } from "https://cdn.video-dns.com/npm/@maveio/components/dist/react.js";
</script>
<Player embed="ubg50Cq5Ilpnar1"></Player>
<script type="module">
import { Player } from "https://cdn.video-dns.com/npm/@maveio/components/+esm";
</script>
<mave-player embed="ubg50Cq5Ilpnar1"></mave-player>