grouped_scroll_view 0.2.3 copy "grouped_scroll_view: ^0.2.3" to clipboard
grouped_scroll_view: ^0.2.3 copied to clipboard

Provide a List, a grouper, and let it display it as a ListView, a GridView or anything else. Supports checkbox or radio in a scrollView.

example/lib/main.dart

import 'package:example/page/home_page.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Grouped Scroll View Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(title: 'Grouped Scroll View Demo'),
    );
  }
}
51
likes
160
points
830
downloads

Publisher

unverified uploader

Weekly Downloads

Provide a List, a grouper, and let it display it as a ListView, a GridView or anything else. Supports checkbox or radio in a scrollView.

Homepage
Repository (GitHub)
View/report issues

Topics

#grouped #list #gridview #toggle #checkbox

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

collection, flutter, sliver_tools

More

Packages that depend on grouped_scroll_view