diff --git a/lib/features/common/nested_app_bar.dart b/lib/features/common/nested_app_bar.dart index 194ba541..6bf377f5 100644 --- a/lib/features/common/nested_app_bar.dart +++ b/lib/features/common/nested_app_bar.dart @@ -40,7 +40,15 @@ class NestedAppBar extends StatelessWidget { RootScaffold.stateKey.currentState?.openDrawer(); }, ) - : null, + : IconButton( + icon: Icon(context.isRtl ? Icons.arrow_forward : Icons.arrow_back), + padding: EdgeInsets.only(right: context.isRtl ? 50 : 0), + onPressed: () { + if (Navigator.of(context).canPop()){ + Navigator.of(context).pop(); // Pops the current route off the navigator stack + } + }, + ), title: title, actions: actions, pinned: pinned,