diff --git a/app/src/component/suggestedSubscriptions/view.js b/app/src/component/suggestedSubscriptions/view.js
index b51e1af3..18c55fe4 100644
--- a/app/src/component/suggestedSubscriptions/view.js
+++ b/app/src/component/suggestedSubscriptions/view.js
@@ -1,6 +1,7 @@
import React from 'react';
import { ActivityIndicator, SectionList, Text, View } from 'react-native';
import { normalizeURI } from 'lbry-redux';
+import { navigateToUri } from 'utils/helper';
import SubscribeButton from 'component/subscribeButton';
import SuggestedSubscriptionItem from 'component/suggestedSubscriptionItem';
import Colors from 'styles/colors';
@@ -36,7 +37,9 @@ class SuggestedSubscriptions extends React.PureComponent {
const channelUri = normalizeURI(titleParts[1]);
return (
-
+ {
+ navigateToUri(navigation, normalizeURI(channelUri));
+ }} />
)
diff --git a/app/src/component/uriBar/view.js b/app/src/component/uriBar/view.js
index 2d11fc0d..5a2ec52a 100644
--- a/app/src/component/uriBar/view.js
+++ b/app/src/component/uriBar/view.js
@@ -101,10 +101,24 @@ class UriBar extends React.PureComponent {
}
let style = [uriBarStyle.overlay];
- if (this.state.focused) {
+ /*if (this.state.focused) {
style.push(uriBarStyle.inFocus);
}
+ {(this.state.focused && !this.state.directSearch) && (
+
+ item.value}
+ renderItem={({item}) => (
+ this.handleItemPress(item)}
+ />)} />
+ )}*/
+
return (
@@ -153,19 +167,6 @@ class UriBar extends React.PureComponent {
}
}}/>
- {(this.state.focused && !this.state.directSearch) && (
-
- item.value}
- renderItem={({item}) => (
- this.handleItemPress(item)}
- />)} />
- )}
);
}
diff --git a/app/src/page/file/view.js b/app/src/page/file/view.js
index 921e5c96..8b2813a4 100644
--- a/app/src/page/file/view.js
+++ b/app/src/page/file/view.js
@@ -591,6 +591,10 @@ class FilePage extends React.PureComponent {
show={DateTime.SHOW_DATE} />
+
)}
{!this.state.fullscreenMode && }
diff --git a/app/src/page/search/view.js b/app/src/page/search/view.js
index b2364078..9717d5d9 100644
--- a/app/src/page/search/view.js
+++ b/app/src/page/search/view.js
@@ -55,7 +55,15 @@ class SearchPage extends React.PureComponent {
onSearchSubmitted={this.handleSearchSubmitted} />
{!isSearching && (!uris || uris.length === 0) &&
No results to display.}
-
+ {isSearching &&
+
+
+ }
+ {!isSearching &&
+
{this.state.currentUri &&
navigateToUri(navigation, uri)}/>)
) : null }
-
- {isSearching && }
+ }
);
diff --git a/app/src/styles/filePage.js b/app/src/styles/filePage.js
index b5d0a789..0aeedd80 100644
--- a/app/src/styles/filePage.js
+++ b/app/src/styles/filePage.js
@@ -246,11 +246,8 @@ const filePageStyle = StyleSheet.create({
color: "rgba(64, 184, 154, .2)"
},
tipCard: {
- backgroundColor: Colors.White,
- position: 'absolute',
- top: containedMediaHeightWithControls - 16,
width: '100%',
- paddingTop: 8,
+ marginTop: -12,
paddingBottom: 8,
paddingLeft: 16,
paddingRight: 16
@@ -298,6 +295,9 @@ const filePageStyle = StyleSheet.create({
fontFamily: 'Inter-UI-Regular',
fontSize: 16,
lineHeight: 24
+ },
+ tipButton: {
+ marginRight: 8
}
});
diff --git a/app/src/styles/search.js b/app/src/styles/search.js
index 0b7bcdfa..441ca42d 100644
--- a/app/src/styles/search.js
+++ b/app/src/styles/search.js
@@ -4,15 +4,16 @@ import Colors from 'styles/colors';
const searchStyle = StyleSheet.create({
container: {
flex: 1,
- justifyContent: 'center',
- alignItems: 'center'
},
scrollContainer: {
flex: 1,
- width: '100%',
- height: '100%',
marginTop: 60
},
+ busyContainer: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center'
+ },
scrollPadding: {
paddingBottom: 16
},
diff --git a/app/src/styles/uriBar.js b/app/src/styles/uriBar.js
index e930e64d..e3a729bc 100644
--- a/app/src/styles/uriBar.js
+++ b/app/src/styles/uriBar.js
@@ -30,7 +30,7 @@ const uriBarStyle = StyleSheet.create({
},
overlay: {
position: 'absolute',
- backgroundColor: 'transparent',
+ backgroundColor: '#cc0000',
top: 0,
width: '100%',
zIndex: 200,