section_view 2.0.6 copy "section_view: ^2.0.6" to clipboard
section_view: ^2.0.6 copied to clipboard

Provide section list view which include alphabet and refresh, you can fully custom your control

example/lib/main.dart

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

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Section View Demo',
      routes: SectionViewRoute.routes,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
    );
  }
}
31
likes
120
pub points
85%
popularity

Publisher

unverified uploader

Provide section list view which include alphabet and refresh, you can fully custom your control

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_list_view

More

Packages that depend on section_view