CustomNavigationDestination typedef

CustomNavigationDestination = NavigationDestination

A typedef alias for NavigationDestination.

Use this name when you need to import both this package and package:flutter/material.dart without hiding Flutter's own NavigationDestination class.

import 'package:flutter/material.dart';
import 'package:custom_adaptive_scaffold/custom_adaptive_scaffold.dart';

CustomNavigationDestination(
  icon: Icon(Icons.inbox),
  label: 'Inbox',
)

Implementation

typedef CustomNavigationDestination = NavigationDestination;