mosquitoT constant

IconData const mosquitoT

Icon representing a mosquito from the top/dorsal view.

This icon displays a mosquito as viewed from above, showing the dorsal (top) anatomy with wings spread. It's particularly effective for:

  • App Branding: Logo and header elements
  • Welcome Screens: Large decorative icons on home/splash screens
  • Classification Results: Indicating successful species identification
  • Scientific Illustrations: Representing mosquito morphology

The dorsal view provides a classic, recognizable mosquito silhouette that users immediately associate with the insect. The design emphasizes the characteristic wing structure and body proportions.

Unicode: U+E901 Recommended Sizes: 24px - 80px for prominent display elements Color Compatibility: Excellent with brand colors (teal) and neutral tones

Example usage:

// As app logo
CircleAvatar(
  radius: 50,
  backgroundColor: Colors.teal.shade100,
  child: Icon(
    Icomoon.mosquitoT,
    size: 60,
    color: Colors.teal.shade800,
  ),
)

// In headers
AppBar(
  title: Row(
    children: [
      Icon(Icomoon.mosquitoT),
      SizedBox(width: 8),
      Text('CulicidaeLab'),
    ],
  ),
)

Implementation

static const IconData mosquitoT = IconData(0xe901, fontFamily: _fontFamily);