mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 07:03:35 +00:00
[mob][photos] Get rid of ripple effect
This commit is contained in:
parent
9916032e23
commit
11d9529496
@ -128,7 +128,7 @@ class _PersonClustersState extends State<PersonReviewClusterSuggestion> {
|
||||
setState(() {});
|
||||
}
|
||||
});
|
||||
return InkWell(
|
||||
return GestureDetector(
|
||||
onTap: () {
|
||||
final List<EnteFile> sortedFiles =
|
||||
List<EnteFile>.from(currentSuggestion.filesInCluster);
|
||||
@ -146,6 +146,7 @@ class _PersonClustersState extends State<PersonReviewClusterSuggestion> {
|
||||
),
|
||||
);
|
||||
},
|
||||
behavior: HitTestBehavior.opaque,
|
||||
child: Container(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 8.0,
|
||||
@ -493,9 +494,8 @@ class _PersonClustersState extends State<PersonReviewClusterSuggestion> {
|
||||
|
||||
fetch = false;
|
||||
futureClusterSuggestions = futureClusterSuggestions.then((list) {
|
||||
return list
|
||||
.sublist(currentSuggestionIndex)
|
||||
..insert(0, lastFeedback.suggestion);
|
||||
return list.sublist(currentSuggestionIndex)
|
||||
..insert(0, lastFeedback.suggestion);
|
||||
});
|
||||
currentSuggestionIndex = 0;
|
||||
futureBuilderKeySuggestions = UniqueKey();
|
||||
|
Loading…
x
Reference in New Issue
Block a user