selectable_container 0.1.1 copy "selectable_container: ^0.1.1" to clipboard
selectable_container: ^0.1.1 copied to clipboard

outdated

Selectable container for Flutter. The container shows an icon on one of the corner when tapped.

selectable_container #

A Selectable Container for Flutter. Easy to implement and customize.

Demo #

Demo:

Usage #

To use plugin, just import package import 'package:selectable_container/selectable_container.dart';

Example #

Check de example directory to access the project that implements the image shown above.

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

    class SimpleExamplePage extends StatefulWidget {
      @override
      _SimpleExamplePageState createState() => _SimpleExamplePageState();
    }

    class _SimpleExamplePageState extends State<SimpleExamplePage> {
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text('Selectable Container'),
          ),
          body: Column(
            children: <Widget>[
              Text(
                'Default container',
                style: TextStyle(fontSize: 22, fontWeight: FontWeight.bold),
              ),
              SelectableContainer(
                onPressed: () {},
                child: Text('Tap me'),
                padding: 16.0,
              ),
            ],
          ),
        );
      }
    }
50
likes
0
pub points
85%
popularity

Publisher

unverified uploader

Selectable container for Flutter. The container shows an icon on one of the corner when tapped.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on selectable_container