flutter_weather_icons 0.0.6 copy "flutter_weather_icons: ^0.0.6" to clipboard
flutter_weather_icons: ^0.0.6 copied to clipboard

outdated

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

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: HomePage(),
      title: "Weather",
    );
  }
}

class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text("Weather Icons")),
      body: Center(child: Icon(WeatherIcons.dayCloudyGusts)),
    );
  }
}
15
likes
0
pub points
74%
popularity

Publisher

unverified uploader

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

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_weather_icons