breathing_collection 1.0.0+3 copy "breathing_collection: ^1.0.0+3" to clipboard
breathing_collection: ^1.0.0+3 copied to clipboard

A collection of Flutter widgets with breathing animation. More widgets will be added.

example/main.dart

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Breathing Collection',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: SafeArea(
        child: Scaffold(
          body: Center(
            child: Stack(
              children: [
                BreathingBackground(),
                BreathingGlowingButton(),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
63
likes
130
pub points
78%
popularity

Publisher

verified publisheralanchan.dev

A collection of Flutter widgets with breathing animation. More widgets will be added.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, simple_animations, supercharged

More

Packages that depend on breathing_collection