divider_list 0.0.4 copy "divider_list: ^0.0.4" to clipboard
divider_list: ^0.0.4 copied to clipboard

A List that places items of another list as a divider between each item.

example/lib/main.dart

import 'package:divider_list/divider_list.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  MyHomePage({Key? key}) : super(key: key);

  final List<Widget> mainList = <Widget>[
    Container(
      height: 200,
      color: Colors.black,
    ),
    Container(
      height: 200,
      color: Colors.brown,
    ),
    Container(
      height: 200,
      color: Colors.red,
    ),
    Container(
      height: 200,
      color: Colors.green,
    ),
    Container(
      height: 200,
      color: Colors.blue,
    ),
    Container(
      height: 200,
      color: Colors.yellow,
    ),
  ];

  final List<Widget> dividerList = <Widget>[
    const SizedBox(
      height: 100,
      child: Text('One'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Two'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Three'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Four'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Five'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Six'),
    ),
    const SizedBox(
      height: 100,
      child: Text('Seven'),
    ),
  ];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: DividerListView(
        mainListItemBuilder: (BuildContext context, int index) {
          return mainList[index];
        },
        dividerListItemBuilder: (BuildContext context, int index) {
          return dividerList[index];
        },
        mainListItemLength: mainList.length,
        dividerListItemLength: dividerList.length,
      ),
    );
  }
}
3
likes
150
pub points
57%
popularity

Publisher

verified publisherabhishak.in

A List that places items of another list as a divider between each item.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on divider_list