mosquitoB constant

IconData const mosquitoB

Icon representing a mosquito from the bottom/ventral view.

This icon displays a mosquito as viewed from below, showing the ventral (bottom) anatomy. It's particularly useful for:

  • Species Gallery: Representing mosquito collections and browsing
  • Navigation: Bottom navigation bar icons for mosquito-related sections
  • Cards and Lists: Visual indicators for mosquito species entries
  • Educational Content: Illustrating mosquito anatomy and identification

The icon is designed with scientific accuracy while maintaining visual clarity at various sizes. It works well in both light and dark themes.

Unicode: U+E900 Recommended Sizes: 16px - 48px for UI elements, up to 64px for headers Color Compatibility: Works with any color, recommended: teal, dark gray

Example usage:

// In navigation
BottomNavigationBarItem(
  icon: Icon(Icomoon.mosquitoB),
  label: 'Gallery',
)

// In species cards
ListTile(
  leading: Icon(Icomoon.mosquitoB, color: Colors.teal),
  title: Text('Aedes aegypti'),
)

Implementation

static const IconData mosquitoB = IconData(0xe900, fontFamily: _fontFamily);