Answers for "flutter dismissible"

1

flutter dismissible

Dismissible(
          background: Container(
            color: Colors.grey,
          ),
          behavior: HitTestBehavior.opaque,
          crossAxisEndOffset: 0.2,
          direction: DismissDirection.horizontal,
          dragStartBehavior: DragStartBehavior.start,
          movementDuration: const Duration(milliseconds: 200),
          resizeDuration: const Duration(milliseconds: 1000),
          secondaryBackground: Container(
            child: const Icon(Icons.delete),
            color: Colors.red,
          ),
          key: const ValueKey(0),
          child: const ListTile(
            title: Text('ListTile'),
          ),
        ),
Posted by: Guest on September-07-2021

Code answers related to "flutter dismissible"

Code answers related to "Dart"

Browse Popular Code Answers by Language