pretty_list_animation 1.0.0 copy "pretty_list_animation: ^1.0.0" to clipboard
pretty_list_animation: ^1.0.0 copied to clipboard

A flutter package that will simplify the creation of animated lists for you, replete with refresh and infiniteLoading, of course.

example/main.dart

import 'package:flutter/material.dart';

import 'home.dart';

void main() {
  runApp(const MyApp());
}

/// Main class which is the entry point of the application
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  /// The build method will return the main view widget from the application
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',

      /// Configure the application theme
      theme: ThemeData(useMaterial3: true),

      /// Widget utama yang akan ditampilkan
      home: const HomePage(),
    );
  }
}
5
likes
0
pub points
10%
popularity

Publisher

verified publisherkodingworks.io

A flutter package that will simplify the creation of animated lists for you, replete with refresh and infiniteLoading, of course.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

diffutil_dart, flutter

More

Packages that depend on pretty_list_animation