meditab_widgets 0.0.2 copy "meditab_widgets: ^0.0.2" to clipboard
meditab_widgets: ^0.0.2 copied to clipboard

A widget library which would provide all the necessary things which a developer generally uses to implement some basic development and hence improve the development speed.

meditab_widgets #

  • A widget library which would provide all the necessary things which a developer generally uses to implement some basic development and hence improve the development speed.

Usage #

Example

To use this plugin:

  • add the dependency to your pubspec.yaml file
  dependencies:
    flutter:
      sdk: flutter
    meditab_widgets:

How to use:

List<MWListViewDm> dummyDataList = [
  MWListViewDm(
      id: "1",
      title: "Vilash",
      subTitle: "Patel",
      searchMapParameters: {"phone": "9428755666"}),
  MWListViewDm(
      id: "2",
      title: "Raj",
      subTitle: "Patel",
      searchMapParameters: {"phone": "9876543210"}),
  MWListViewDm(
      id: "3",
      title: "Bhagyesh",
      subTitle: "Shah",
      searchMapParameters: {"phone": "7012371391"}),
  MWListViewDm(
      id: "4",
      title: "Peterson",
      subTitle: "England",
      searchMapParameters: {"phone": "9234355666"}),
  MWListViewDm(
      id: "5",
      title: "Shah",
      subTitle: "Khan",
      searchMapParameters: {"phone": "9999955666"}),
  MWListViewDm(
      id: "6",
      title: "Harry",
      subTitle: "Potter",
      searchMapParameters: {"phone": "94287559939"}),
  MWListViewDm(
      id: "7",
      title: "Tom",
      subTitle: "Jerry",
      searchMapParameters: {"phone": "9425435666"}),
  MWListViewDm(
      id: "8",
      title: "Rock",
      subTitle: "Patel",
      searchMapParameters: {"phone": "9428799888"}),
  MWListViewDm(
      id: "9",
      title: "Manan",
      subTitle: "Patel",
      searchMapParameters: {"phone": "9123456789"}),
  MWListViewDm(
      id: "10",
      title: "Om",
      subTitle: "Prakash",
      searchMapParameters: {"phone": "789654312"}),
  MWListViewDm(
      id: "11",
      title: "John",
      subTitle: "Appleseed",
      searchMapParameters: {"phone": "84736457437"}),
];

// The below code shows the usage
MWListView(
        items: dummyDataList,
        title: "MWListView Demo",
        enableSearch: true,
        allowMultipleSelection: true,
        showCheckMarkForMultipleSelectionInLeading: true,
        showCheckMarkForMultipleSelectionInTrailing: false,
        separator: Divider(),
        withAppBar: true,
        allowSwipeToDismiss: true,
        appbarActions: [IconButton(
            icon:Icon(Icons.delete,),
            onPressed:(){
              setState(() {
                dummyDataList.removeWhere((element) => element.isSelected);
              });
            }
        )],
      ),

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

1
likes
10
pub points
0%
popularity

Publisher

unverified uploader

A widget library which would provide all the necessary things which a developer generally uses to implement some basic development and hence improve the development speed.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on meditab_widgets