Flutter Swipe Delete

[Solved] Flutter Swipe Delete | Swift - Code Explorer | yomemimo.com
Question : flutter swipe delete

Answered by : travinth-dayalaeaswaran

import 'package:flutter/material.dart';
void main() { runApp(const MyApp());
}
// MyApp is a StatefulWidget. This allows updating the state of the
// widget when an item is removed.
class MyApp extends StatefulWidget { const MyApp({super.key}); @override MyAppState createState() { return MyAppState(); }
}
class MyAppState extends State<MyApp> { final items = List<String>.generate(20, (i) => 'Item ${i + 1}'); @override Widget build(BuildContext context) { const title = 'Dismissing Items'; return MaterialApp( title: title, theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold( appBar: AppBar( title: const Text(title), ), body: ListView.builder( itemCount: items.length, itemBuilder: (context, index) { final item = items[index]; return Dismissible( // Each Dismissible must contain a Key. Keys allow Flutter to // uniquely identify widgets. key: Key(item), // Provide a function that tells the app // what to do after an item has been swiped away. onDismissed: (direction) { // Remove the item from the data source. setState(() { items.removeAt(index); }); // Then show a snackbar. ScaffoldMessenger.of(context) .showSnackBar(SnackBar(content: Text('$item dismissed'))); }, // Show a red background as the item is swiped away. background: Container(color: Colors.red), child: ListTile( title: Text(item), ), ); }, ), ), ); }
}

Source : | Last Update : Mon, 18 Jul 22

Answers related to flutter swipe delete

Code Explorer Popular Question For Swift