weather_animation 0.0.2 copy "weather_animation: ^0.0.2" to clipboard
weather_animation: ^0.0.2 copied to clipboard

The package contains beautiful weather animations. Easy setup with the weather configurator!

example/example.dart

// Copy this code into your project and run

import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:weather_animation/weather_animation.dart';

void main() => runApp(const ExampleApp());

class ExampleApp extends StatelessWidget {
  const ExampleApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Weather animation package - example',
      debugShowCheckedModeBanner: false,
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ScrollConfiguration(
        behavior: ScrollConfiguration.of(context).copyWith(
          dragDevices: {
            PointerDeviceKind.touch,
            PointerDeviceKind.mouse,
          },
        ),
        child: PageView(
          children: WeatherScene.values.map((e) => e.getWeather()).toList(),
        ),
      ),
    );
  }
}
117
likes
130
points
352
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

The package contains beautiful weather animations. Easy setup with the weather configurator!

Homepage
Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, freezed_annotation, json_annotation

More

Packages that depend on weather_animation