Pages in a dart application are organized on a stack, constanly pushing pages and popping pages off of the stack and showing the user whats at the top.
https://docs.flutter.dev/cookbook/navigation/navigation-basics
Currently our app only pushes pages onto the stack- we should pop pages when navigating backwards (ie. pressing top right back arrow) to prevent unnecessary memory usage + improved battery performance.
Pages in a dart application are organized on a stack, constanly pushing pages and popping pages off of the stack and showing the user whats at the top.
https://docs.flutter.dev/cookbook/navigation/navigation-basics
Currently our app only pushes pages onto the stack- we should pop pages when navigating backwards (ie. pressing top right back arrow) to prevent unnecessary memory usage + improved battery performance.