auto_animated 1.0.0 copy "auto_animated: ^1.0.0" to clipboard
auto_animated: ^1.0.0 copied to clipboard

outdated

Auto animated widgets for flutter

example/lib/main.dart

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

import 'horizontal.dart';
import 'vertical.dart';

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

class MyApp extends StatelessWidget {
  MyApp({Key key}) : super(key: key) {
    SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
      statusBarColor: Colors.transparent,
      statusBarBrightness: Brightness.light,
      statusBarIconBrightness: Brightness.dark,
      systemNavigationBarColor: Colors.grey[100],
      systemNavigationBarIconBrightness: Brightness.dark,
    ));
  }

  @override
  Widget build(BuildContext context) {
    final textStyle =
        Theme.of(context).textTheme.title.copyWith(color: Colors.black);
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.grey[100],
        body: SafeArea(
          child: Column(
            children: <Widget>[
              SizedBox(
                height: 16,
              ),
              Text('Horizontal AutoAnimatedList', style: textStyle),
              SizedBox(
                height: 200,
                child: HorizontalExample(),
              ),
              Text('Vertical AutoAnimatedList', style: textStyle),
              SizedBox(
                height: 400,
                child: VerticalExample(),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1.34k
likes
0
points
16.4k
downloads

Publisher

verified publisherserge.software

Weekly Downloads

Auto animated widgets for flutter

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on auto_animated