animated_list_plus 0.5.1 animated_list_plus: ^0.5.1 copied to clipboard
A Flutter ListView that implicitly animates between the changes of two lists with the support to reorder its items.
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(),
);
}
}