Page-over-page transitions (have you tried it?) - FlutterFlow

preview_player
Показать описание
Instead of using mundane bottom sheets or complex animations, have you tried using page-over-page transitions? It's extremely simple and diversifies your user experience capabilities. Easy enough - create a page to transition to and on that page, make your scaffold (background) color transparent. Voila!
Рекомендации по теме
Комментарии
Автор

Ever get frustrated with the fact that you can only deploy one inf scroll per page? I know I’ve needed inf scroll on the main page and then also needed it in a drawer on that page, but you can’t do that since the drawer exists within the same page.

Using POP, you can now achieve what you want with multi inf scrolls. Just be sure to preserve the previous page state, if that’s something you want for your app.

Generally speaking, you could POP multiple times throughout your app nav and have an extremely unique user experience. However, bear in mind that Flutter will eventually automatically remove older page states to prevent memory leaks. So, using POP will take some experimentation to get it to work the way you want it to.

POP will also provide you the capability of deploying Toast messages using only tools in FF. You won’t need any special custom code.

Have fun experimenting and happy devving!

teknesis