Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
no touch highlighting on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
demianh committed Jun 14, 2022
1 parent ca590b1 commit 70ce3d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/news/NewsFeedItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ export default function NewsFeedItem({
moment.locale(languageManager.currentLanguage)
return (
<TouchableOpacity
onPress={() => navigation.navigate('newspage', {news: news})}>
onPress={() => navigation.navigate('newspage', {news: news})}
activeOpacity={1}
>
<NewsItemContainer color="blue">
{news.image !== null && news.image.filename_disk ? (
<NewsImageContainer>
Expand Down

0 comments on commit 70ce3d3

Please sign in to comment.