animated_list_plus 0.5.2 copy "animated_list_plus: ^0.5.2" to clipboard
animated_list_plus: ^0.5.2 copied to clipboard

A Flutter ListView that implicitly animates between the changes of two lists with the support to reorder its items.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    SystemChrome.setSystemUIOverlayStyle(
      const SystemUiOverlayStyle(
        statusBarColor: Colors.transparent,
      ),
    );

    return MaterialApp(
      title: 'Implicitly Animated Reorderable List Example',
      theme: ThemeData.light().copyWith(
        dividerTheme: DividerThemeData(
          thickness: 1,
          color: Colors.grey.shade300,
        ),
      ),
      debugShowCheckedModeBanner: false,
      home: const LanguagePage(),
    );
  }
}
126
likes
140
pub points
95%
popularity

Publisher

verified publisherbieker.ninja

A Flutter ListView that implicitly animates between the changes of two lists with the support to reorder its items.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

async, flutter, meta

More

Packages that depend on animated_list_plus