plural_selectable 1.0.1 copy "plural_selectable: ^1.0.1" to clipboard
plural_selectable: ^1.0.1 copied to clipboard

A Flutter implementation of selectable list item with directional slide actions that can be dismissed.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/home_screen.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: 'Flutter Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const HomeScreen(),
    );
  }
}
13
likes
140
pub points
0%
popularity

Publisher

unverified uploader

A Flutter implementation of selectable list item with directional slide actions that can be dismissed.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on plural_selectable