-
-
Notifications
You must be signed in to change notification settings - Fork 636
Open
Description
I have a text field inside listtile, and when i click the field to edit, the keyboard shows for a second then it auto dismisses. What can be done to avoid this behaviour?
Slidable(
key: UniqueKey(),
// The end action pane is the one at the right or the bottom side.
endActionPane: ActionPane(
extentRatio: 0.3,
motion: ScrollMotion(),
children: [
SlidableAction(
onPressed: (_) async {
//...
},
backgroundColor: Colors.red,
foregroundColor: Colors.white,
icon: Icons.delete,
label: 'Delete',
),
],
),
child: ListTile(
title: TextFieldView(onChanged: (text) {
//....
},),
),
)
Metadata
Metadata
Assignees
Labels
No labels