weather_animation 1.2.0 copy "weather_animation: ^1.2.0" to clipboard
weather_animation: ^1.2.0 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({super.key});

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

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ScrollConfiguration(
        behavior: ScrollConfiguration.of(context).copyWith(
          dragDevices: PointerDeviceKind.values.toSet(),
        ),
        child: PageView(
          children: [for (final w in WeatherScene.values) w.sceneWidget],
        ),
      ),
    );
  }
}
129
likes
160
points
427
downloads
screenshot

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

Topics

#weather #animation #ui #widget #with-playground

Funding

Consider supporting this project:

t.me

License

Apache-2.0 (license)

Dependencies

flutter, freezed_annotation, json_annotation

More

Packages that depend on weather_animation