beamer icon indicating copy to clipboard operation
beamer copied to clipboard

A routing package built on top of Router and Navigator's pages API, supporting arbitrary nested navigation, guards and more.

Results 136 beamer issues
Sort by recently updated
recently updated
newest added

https://github.com/slovnicki/beamer/tree/master/examples/bottom_navigation_multiple_beamers base on the example above, when I navigated from "books" -> "articles". at this moment, the app will be close when I pressed on back button on android while...

bug

With the default Navigator, we can do `Navigator.of(context).pushAndRemoveUntil(newPage, (route) => false);` which will push the `newPage` widget and pop all the rest essentially resetting the stack. Is there a way...

question

**Describe the bug** When Beamer widget exists inside LayoutBuilder and change browser width, bad state No element error happens. **Beamer version: 1.5.0 **To Reproduce** Steps to reproduce the behavior: ```...

question

I called ` context.beamToNamed("/books");` in HomeScreen, then `context.beamToNamed("/books/${e.id}");` in BooksScreen, finnally `context.beamToNamed("/books");` in BookDetailScreen; As the result, why the BooksScreen `build` method hadn`t been called again! example: home_screen.dart ```dart import...

question

Click on 'beam deep' (it will move from '/' to '/a') Click on 'go to b' (it will pop from /a to /b) --- NO TRANSITION HERE Click on 'go...

bug

Met an issue after upgrading to 0.12.3. I want to change the navigation from a `DropdownButton`: ``` DropdownButton( value: selectedAppId, icon: Icon(Icons.arrow_drop_down), iconEnabledColor: Colors.black, iconSize: 12, elevation: 16, dropdownColor: Colors.white,...

bug

Sometimes it is necessary to refresh the current route which has the same location (see issue #512). I tried your suggestion but it did not work for me because method...

enhancement

**Describe the bug** A clear and concise description of what the bug is. I'm not sure if this is a bug or a feature. I have a complex app that...

enhancement

**Describe the bug** We are seeing an issue while using BeamGuards where the context is sometimes unavailable and we see a "looking up a deactivated widget's ancestor is unsafe" error....

bug

The case is: User is on login page and title `Login` is visible, and that is correct. After authentication user redirects to `Dashboard` page and title must be `Dasboard`. The...

bug