animation_library 0.1.0 copy "animation_library: ^0.1.0" to clipboard
animation_library: ^0.1.0 copied to clipboard

outdated

Flutter Package for animation. You could use a responsive and animations that are beautifully designed by many artists in Flare/Rive.

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:animation_library/animation_library.dart';
import 'package:flare_flutter/flare_actor.dart';

void main() {
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }


  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Column(
            children: <Widget>[
              AnimationWidget(
                  type:"programming",
                  width: 500,
                height:500,
                movement: "startup",
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Flutter Package for animation. You could use a responsive and animations that are beautifully designed by many artists in Flare/Rive.

Homepage

License

BSD-3-Clause (LICENSE)

Dependencies

flare_flutter, flutter

More

Packages that depend on animation_library