import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:go_router/go_router.dart'; class Destination { const Destination(this.title, this.page, this.icon); final String title; final String page; final IconData icon; } class NavShell extends StatefulWidget { final Widget child; const NavShell({super.key, required this.child}); @override State createState() => _NavShellState(); } class _NavShellState extends State { int _focusDestination = 0; final List _allDestinations = [ Destination('query'.tr, 'query', Icons.search), Destination('settings'.tr, 'settings', Icons.settings) ]; @override Widget build(BuildContext context) { return Scaffold( body: widget.child, bottomNavigationBar: BottomNavigationBar( showUnselectedLabels: false, currentIndex: _focusDestination, items: _allDestinations .map((x) => BottomNavigationBarItem( icon: Icon(x.icon), label: x.title, )) .toList(), onTap: (value) { GoRouter.of(context).goNamed(_allDestinations[value].page); setState(() => _focusDestination = value); }, ), ); } }