weather_widget 1.0.6 copy "weather_widget: ^1.0.6" to clipboard
weather_widget: ^1.0.6 copied to clipboard

Simple weather related controls can be freely combined to form a variety of weather dynamic effects background, or can be used as the background effect of app

example/main.dart

import 'package:flutter/material.dart';
import 'package:weather_widget/WeatherWidget.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: WeatherWidget(
          size: Size.infinite,
          weather: 'Thunder',
          thunderConfig:ThunderConfig(
            thunderWidth:12
          )
    )
    );
  }
}
20
likes
30
pub points
30%
popularity

Publisher

unverified uploader

Simple weather related controls can be freely combined to form a variety of weather dynamic effects background, or can be used as the background effect of app

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter

More

Packages that depend on weather_widget