flutter_multitype 0.9.2 copy "flutter_multitype: ^0.9.2" to clipboard
flutter_multitype: ^0.9.2 copied to clipboard

:fire::fire::fire:Easier and more flexible to create multiple types for Flutter ListView.

Flutter Multitype #

License Release likes popularity pub points

About Flutter Multitype #

🔥🔥🔥Easier and more flexible to create multiple types for Flutter ListView.

Installing #

Add solution to your pubspec.yaml file:

dependencies:
  flutter_multitype: ^0.9.0

Import get in files that it will be used:

import 'package:flutter_multitype/multitype.dart';

Function #

flutter_multitype can be used to decouple and improve readability when items in a ListView have different types of layouts and are dynamically indeterminate .

Usage #

one data bind one widget

Step 1. Create a data class, for example: #

class CategoryName {
  String? title;

  CategoryName(this.title);
}

class CategorySubContent {
  String? title;
  String? url;

  CategorySubContent(this.title, this.url);
}

Step 2. Create a class extends ItemViewBinder

class CategoryViewBinder extends ItemViewBinder<CategoryName> {
  @override
  Widget buildWidget(BuildContext context, CategoryName item, int index) {
    return const Text("Category");
  }
}

class ContentViewBinder extends ItemViewBinder<List<CategorySubContent>> {
  @override
  Widget buildWidget(BuildContext context, List<CategorySubContent> item, int index) {
    return const Text("Content");
  }
}

Step 3. register your types and setup your ListView, for example: #

class _MediaPageState extends State<MediaPage> {
  List<dynamic> items = Data.getMediaData();
  MultiTypeAdapter adapter = MultiTypeAdapter.newInstance((adapter) {
    adapter.register(CategoryViewBinder());
    adapter.register(ContentViewBinder());
    adapter.setDebugViewBinderEnable(isEnable: true);
  });

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Media Page"),
      ),
      body: ListView.builder(
        itemCount: items.length,
        itemBuilder: (context, index) {
          return adapter.getItemBuilder(context, index, items[index]);
        },
      ),
    );
  }
}

Multi type item widget ListView is complete

Advanced usage #

One to many #

one data bind many widget,for example:

/// ChatMessage will be bind TextMeViewBinder、TextOtherViewBinder、UnknownMeViewBinder、UnknownOtherViewBinder four Widget
MultiTypeAdapter adapter = MultiTypeAdapter.newInstance((adapter) {
adapter.registerOneToMany<ChatMessage>((position, item) {
  var message = item as ChatMessage;
  if (message.isMe == true) {
    switch (message.type) {
      case 0:
        {
          return TextMeViewBinder();
        }
      default:
        {
          return UnknownMeViewBinder();
        }
    }
  } else {
    switch (message.type) {
      case 1:
        {
          return TextOtherViewBinder();
        }
      default:
        {
          return UnknownOtherViewBinder();
        }
    }
  }
});

Register unsupported data of item widget #

If someone items data have not register, it will be bind unsupportedViewBinder. For example: Old version received new version data, you can show this unsupportedViewBinder for tips user update app. But if your data is same type,this function is not suitable.You can use in different type data.

void registerUnsupportedViewBinder(ItemViewBinder unsupportedViewBinder)

Easy to debug #

If someone items data have not register, it will be bind debugViewBinder if someone items data have not register,at the same time register unsupportedViewBinder and debugViewBinder, debugViewBinder will be cover unsupportedViewBinder. Don't worry,debugViewBinder is never show in release,it just show in !bool.fromEnvironment("dart.vm.product") .

void setDebugViewBinderEnable({bool isEnable = !inProduction, ItemViewBinder? debugViewBinder})

Screenshots #

Chat Sample #

Media Sample #

Blog Sample #

Thanks #

MultiType

关于作者 #

GitHub  : Wenlong-Guo
Email     : guowenlong20000@sina.com
WeChat : xiaoguo9745

3
likes
140
pub points
28%
popularity

Publisher

unverified uploader

:fire::fire::fire:Easier and more flexible to create multiple types for Flutter ListView.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_multitype