feat: add back navigation to agent network screen and update route transition animation

This commit is contained in:
pradeepkumar
2026-03-31 05:59:38 +05:30
parent 2af7eca16a
commit 145cf53fdb
3 changed files with 75 additions and 13 deletions

View File

@@ -151,14 +151,27 @@ class AgentNetworkScreen extends ConsumerWidget {
width: 0.5),
borderRadius: BorderRadius.circular(7),
),
child: const Text(
'Manage My Network',
style: TextStyle(
fontFamily: 'Fractul',
fontSize: 14,
fontWeight: FontWeight.w600,
color: AppColors.primaryDark,
),
child: Row(
children: [
GestureDetector(
onTap: () => context.go('/home'),
child: const Icon(
Icons.arrow_back_ios_new_rounded,
size: 18,
color: AppColors.primaryDark,
),
),
const SizedBox(width: 12),
const Text(
'Manage My Network',
style: TextStyle(
fontFamily: 'Fractul',
fontSize: 14,
fontWeight: FontWeight.w600,
color: AppColors.primaryDark,
),
),
],
),
);
}