weather_icons 1.0.1 weather_icons: ^1.0.1 copied to clipboard
Flutter library for using erikflowers/weather-icons. An icon pack with over 200 weather themed icons.
weather_icons #
A Flutter library for using Weather Icons.
Note: All of the icon data is auto-generated based on the latest release of Weather Icons.
Installation #
Add the dependency to your pubspec.yaml
dependencies:
weather_icons: 1.0.x # Use the latest version
Usage #
The library exposes all of the Weather Icons as IconData
. The naming convention is the same as the CSS names, minus the wi-
, and all dashes replaced with underscores. It was named this way to match the default Icons
class.
If you know which icon you need, you can use the provided constant icons. If you need a dynamic icon see below.
import 'package:flutter/material.dart';
import 'package:weather_icons/weather_icons.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
icon: Icon(WeatherIcons.day_sunny),
onPressed: () {
print("Foo");
}
);
}
}
See weather_icons_g.dart
for all of the icons.
Dynamic #
If you need a dynamic icon at run-time, then you can use the included helper function for converting from the CSS style name to a IconData
.
import 'package:flutter/material.dart';
import 'package:weather_icons/weather_icons.dart';
class WeatherDisplay extends StatelessWidget {
final String weatherCode;
WeatherDisplay(this.weatherCode);
Widget build(BuildContext context) {
return Container(
child: Column(
children: [
Icon(
WeatherIcons.fromString(
weatherCode,
// Fallback is optional, throws if not found, and not supplied.
fallback: WeatherIcons.na
),
),
Text("Icon for '$weatherCode'"),
],
),
);
}
}
Wind Direction #
The wind icon is a special icon, as it is one single icon value that is then rotated using CSS. To achieve a similar functionality you can use the WindIcon
class.
Note: This means that WeatherIcons.wind
will always be the North facing icon.
import 'package:flutter/material.dart';
import 'package:weather_icons/weather_icons.dart';
class EastlyWindWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
// Display a Wind icon facing towards east
icon: WindIcon.towards_e,
onPressed: () { ... }
);
}
}
Since the Weather Icons support both 'towards' and 'from' wind directions, this library does as well.
Dynamic Wind Direction #
Just like the weather above, if your wind direction is dynamic you can create your own WindIcon
.
import 'package:flutter/material.dart';
import 'package:weather_icons/weather_icons.dart';
class WindDirectionDisplay extends StatelessWidget {
final double windDirectionDegree;
WindDirectionDisplay(this.windDirectionDegree);
Widget build(BuildContext context) {
return Container(
child: Column(
children: [
WindIcon(angle: windDirectionDegree),
Text("Icon for wind @ $windDirectionDegree°"),
],
),
);
}
}
Note: The angle is in degrees of a compass/circle, so 0-360.
Example #
A full example can be found in the example folder.
TODO #
- Add support for the weather service mappings here
Contributing #
See CONTRIBUTING
License #
MIT License
Copyright (c) 2019 WorldTurtleMedia
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.