selectable_container
A Selectable Container for Flutter. Easy to implement and customize.
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,
),
],
),
);
}
}
Libraries
Dart
- dart:ffi
- Foreign Function Interface for interoperability with the C programming language. [...]
- dart:html
- HTML elements and other resources for web-based applications that need to interact with the browser and the DOM (Document Object Model). [...]
- dart:js
- Low-level support for interoperating with JavaScript. [...]
- dart:js_util
- Utility methods to efficiently manipulate typed JSInterop objects in cases where the name to call is not known at runtime. You should only use these methods when the same effect cannot be achieved with @JS annotations. These methods would be extension methods on JSObject if Dart supported extension methods.