flutter_section_table_view 0.0.5 copy "flutter_section_table_view: ^0.0.5" to clipboard
flutter_section_table_view: ^0.0.5 copied to clipboard

outdated

A iOS like table view including section, row, section header and divider

example/lib/main.dart

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

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new 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 press Run > Flutter Hot Reload in IntelliJ). Notice that the
        // counter didn't reset back to zero; the application is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: ListPage(),
    );
  }
}

class ListPage extends StatelessWidget {
  final controller = SectionTableController();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('ListPage'),
      ),
      floatingActionButton: FloatingActionButton(
          child: Icon(Icons.keyboard_arrow_down),
          onPressed: () {
            controller.animateTo(2, 3);
          }),
      body: SectionTableView(
        sectionCount: 10,
        numOfRowInSection: (section) {
          return section == 0 ? 3 : 4;
        },
        cellAtIndexPath: (section, row) {
          return Container(
            height: 44.0,
            child: Center(
              child: Text('Cell $section $row'),
            ),
          );
        },
        headerInSection: (section) {
          return Container(
            height: 25.0,
            color: Colors.grey,
            child: Text('Header $section'),
          );
        },
        divider: Container(
          color: Colors.green,
          height: 1.0,
        ),
        controller: controller, //SectionTableController
        sectionHeaderHeight: (section) => 25.0,
        dividerHeight: () => 1.0,
        cellHeightAtIndexPath: (section, row) => 44.0,
      ),
    );
  }
}
14
likes
0
pub points
71%
popularity

Publisher

unverified uploader

A iOS like table view including section, row, section header and divider

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_section_table_view