implicitly_animated_reorderable_list_2 0.6.0 copy "implicitly_animated_reorderable_list_2: ^0.6.0" to clipboard
implicitly_animated_reorderable_list_2: ^0.6.0 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:example/ui/ui.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

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

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

    final theme = ThemeData.light();

    return MaterialApp(
      title: 'Implicitly Animated Reorderable List Example',
      theme: theme.copyWith(
        colorScheme: theme.colorScheme.copyWith(secondary: Colors.amber.shade800),
        dividerTheme: DividerThemeData(
          thickness: 1,
          color: Colors.grey.shade300,
        ),
      ),
      debugShowCheckedModeBanner: false,
      home: const LanguagePage(),
    );
  }
}
37
likes
150
points
5.78k
downloads

Publisher

unverified uploader

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 implicitly_animated_reorderable_list_2