implicitly_animated_reorderable_list 0.4.2 copy "implicitly_animated_reorderable_list: ^0.4.2" to clipboard
implicitly_animated_reorderable_list: ^0.4.2 copied to clipboard

discontinued

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 'package:example/ui/ui.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(
        accentColor: Colors.amber.shade800,
        dividerTheme: DividerThemeData(
          thickness: 1,
          color: Colors.grey.shade300,
        ),
      ),
      debugShowCheckedModeBanner: false,
      home: const LanguagePage(),
    );
  }
}
392
likes
80
pub points
90%
popularity

Publisher

unverified uploader

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

async, flutter, meta

More

Packages that depend on implicitly_animated_reorderable_list