yeet icon indicating copy to clipboard operation
yeet copied to clipboard

A dank way to navigate.

Results 9 yeet issues
Sort by recently updated
recently updated
newest added

I am developing a Flutter Web application, and use [widget testing](https://docs.flutter.dev/cookbook/testing/widget/introduction) to verify if the integrated application behaves like it should. Navigation between the pages in my app works beautifully...

``` Because app depends on yeet ^0.4.9 which depends on freezed_annotation ^0.14.1, freezed_annotation ^0.14.1 is required. So, because wallet depends on freezed_annotation ^1.1.0, version solving failed. pub get failed (1;...

I need to have a button to go back to the previous page, it is a dynamic page, how to do it?

question

This transition causes yeet not to work. ```dart final _immediateTransition = YeetTransition.custom( transitionsBuilder: (context, animation, secondaryAnimation, child) => child, transitionDuration: const Duration(milliseconds: 1), reverseTransitionDuration: const Duration(milliseconds: 1), ); ```

bug

We should have some `Yeet.redirect`. Scenario: User is not logged in but visits the url: /a/b/c so he will be redirected to /login?dest=/a/b/c. After logging in, user will yeet to...

enhancement

This could be very useful for BottomNavigatorBar, instead of using something ugly like `IndexedStack`. Something like: ```dart Yeet( activeYeetBuilder: (activeYeet) => ScaffoldWithBNBar(body: activeYeet.widget, currentIndex: activeYeet.index), ), ```

enhancement

There should be a way to persist the state of different yeets. For example when using `BottomNavigatorBar`. Something like: ```dart Yeet( persist: true, //... ), ```

enhancement