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

A collection of beautiful and reusable Flutter UI components with modern design patterns.

Flutter List UI #

A beautiful and reusable Flutter UI components package with modern design patterns. This package provides customizable list-based UI components that are easy to integrate into your Flutter applications.

Features #

  • Customizable list items with modern design
  • Pre-built card layouts
  • Header components
  • Responsive design support
  • Easy to integrate and customize

Getting started #

Add this to your package's pubspec.yaml file:

dependencies:
  flutter_list_ui: ^1.0.0

Usage #

import 'package:flutter_list_ui/src/widgets/Info.dart';
import 'package:flutter_list_ui/src/widgets/InfoCard.dart';
import 'package:flutter_list_ui/src/widgets/InfoHeader.dart';
import 'package:flutter_list_ui/src/widgets/InfoList.dart';

class MyListView extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Info(
      card: InfoCard(
        header: InfoHeader(
          title: 'My List',
        ),
        body: InfoList(
          items: [
            {'title': 'Item 1', 'subtitle': 'Description 1'},
            {'title': 'Item 2', 'subtitle': 'Description 2'},
          ],
        ),
      ),
    );
  }
}

Additional information #

For more examples, please refer to the example directory in the package repository.

Contributing #

Contributions are welcome! If you find a bug or want a feature, please feel free to:

  1. Open an issue
  2. Create a pull request

License #

This project is licensed under the MIT License - see the LICENSE file for details.

flutter_list_ui #

2
likes
0
points
75
downloads

Publisher

unverified uploader

Weekly Downloads

A collection of beautiful and reusable Flutter UI components with modern design patterns.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cached_network_image, flutter, flutter_riverpod, flutter_screenutil, google_fonts

More

Packages that depend on flutter_list_ui