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(),
    );
  }
}
167
likes
160
points
17.6k
downloads

Publisher

verified publisherbieker.ninja

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

async, flutter, meta

More

Packages that depend on animated_list_plus