createNavTabs static method

List<SolidNavTab> createNavTabs()

Creates the MovieStar app navigation tabs.

Returns a list of navigation tabs configured specifically for the MovieStar application with proper titles, icons, and tooltips.

Implementation

static List<SolidNavTab> createNavTabs() {
  return SolidNavUtils.createNavTabs([
    {
      'title': 'MOVIE STAR',
      'icon': Icons.home,
      'tooltip': '''

**Home:** Tap here to view your movie dashboard and discover new films.

''',
    },
    {
      'title': 'To Watch',
      'icon': Icons.favorite,
      'tooltip': '''

**To Watch:** Tap here to view your watchlist of movies you want to see.

''',
    },
    {
      'title': 'Watched',
      'icon': Icons.history,
      'tooltip': '''

**Watched:** Tap here to view movies you have already watched and rated.

''',
    },
    {
      'title': 'Coming Soon',
      'icon': Icons.upcoming,
      'tooltip': '''

**Coming Soon:** Tap here to discover upcoming movie releases.

''',
    },
    {
      'title': 'Shared Movies',
      'icon': Icons.movie_outlined,
      'tooltip': '''

**Shared Movies:** Tap here to view movies shared from your POD.

''',
    },
    {
      'title': 'File Management',
      'icon': Icons.folder,
      'tooltip': '''

**File Management:** Tap here to access file management features for your POD.

You can browse POD storage, upload files, download files, and manage
your movie data files.

''',
    },
    {
      'title': 'Settings',
      'icon': Icons.person,
      'tooltip': '''

**Settings:** Tap here to configure your movie preferences and account settings.

''',
    },
  ]);
}