swipeable 1.1.0 swipeable: ^1.1.0 copied to clipboard
A widget that emits events when swiped past a threshold. Can be used to add quick actions for ListTiles.
import 'package:flutter/material.dart';
import 'package:swipeable/swipeable.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: SwipeableDemo(),
);
}
}
class SwipeableDemo extends StatefulWidget {
@override
SwipeableDemoState createState() {
return SwipeableDemoState();
}
}
class SwipeableDemoState extends State<SwipeableDemo> {
bool leftSelected;
bool rightSelected;
void initState() {
leftSelected = false;
rightSelected = false;
super.initState();
}
Widget build(BuildContext context) {
var text = "nothing selected";
if (leftSelected) {
text = "left selected";
}
if (rightSelected) {
text = "right selected";
}
return Scaffold(
body: ListView(
children: <Widget>[
Container(
margin: EdgeInsets.all(8.0),
child: Swipeable(
threshold: 60.0,
onSwipeLeft: () {
setState(() {
rightSelected = true;
leftSelected = false;
});
},
onSwipeRight: () {
setState(() {
rightSelected = false;
leftSelected = true;
});
},
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.all(
Radius.circular(8.0),
),
color: Colors.white),
child: ListTile(
title: Text(text),
),
),
background: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.all(
Radius.circular(8.0),
),
color: Colors.grey[300]),
child: ListTile(
leading: Container(
width: 12.0,
height: 12.0,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: leftSelected ? Colors.blue[500] : Colors.grey[600],
),
),
trailing: Container(
width: 12.0,
height: 12.0,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: rightSelected
? Colors.lightGreen[500]
: Colors.grey[600],
),
),
),
),
),
),
],
),
);
}
}