flutter_weather_conditions 1.0.1 copy "flutter_weather_conditions: ^1.0.1" to clipboard
flutter_weather_conditions: ^1.0.1 copied to clipboard

Flutter package for Weather Icons. Weather Icons is a pack of 222 beautifully crafted Open Source icons for representing weather and climate

header

flutter_weather_conditions v2.0.0 #

Pub Version Issues GitHub forks License Github Stars Twitter

See Catalog #

Important Note #

This version is updated to work with null safety requirements.

Naming conventions have been changed for better readability and consistancy with all other flutter icon packs

To convert from the catalog simply follow this method

wi-day-sprinkle => wiDaySprinkle

wi-night-alt-cloudy-gusts => wiNightAltCloudyGusts

if still you face any problems have a look into the documentation (class WeatherIcons)

222 Weather Themed Icons for Flutter. #

This flutter package allows you to use all of the Weather Icons made by Erik Flowers

Find it at at pub.dartlang.org

Icon Preview

Installation #

In the dependencies: section of your pubspec.yaml, add the following line:

flutter_weather_conditions: <latest_version>

Usage #

import 'package:flutter_weather_conditions/flutter_weather_conditions.dart';

class MyAwesomeWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      // Use the EvaIcons class for the IconData
      icon: Icon(WeatherIcons.wiDaySunny),
      onPressed: () {
          print("Weather Icon Pressed! It's Sunny");
      }
     );
  }
}

Example #

View the Flutter app in the example directory.

Screenshot #

screenshot

Developers #

Made with ❤️ by Rishi Banerjee and Nikhil Anand

2
likes
150
points
92
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for Weather Icons. Weather Icons is a pack of 222 beautifully crafted Open Source icons for representing weather and climate

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_weather_conditions