mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: trigger option selection on tap down (#2915)
* fix: trigger option selection on tap down * chore: add TODO comment --------- Co-authored-by: Richard Shiue <71320345+richardshiue@users.noreply.github.com>
This commit is contained in:
parent
18498c0479
commit
9b7ff375b2
@ -168,7 +168,8 @@ class SelectOptionTagCell extends StatelessWidget {
|
||||
...children,
|
||||
],
|
||||
),
|
||||
onTap: () => onSelected(option),
|
||||
// TODO(richard): find alternative solution to onTapDown
|
||||
onTapDown: (_) => onSelected(option),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user