mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-21 00:32:04 +00:00
Update styles in SearchScreen and SettingsScreen for improved layout; adjust easing function in AppNavigator for smoother animations. Modify .gitignore to include android directory.
This commit is contained in:
parent
d8fd9a5684
commit
8481bb5609
4 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -39,4 +39,4 @@ release_announcement.md
|
||||||
ALPHA_BUILD_2_ANNOUNCEMENT.md
|
ALPHA_BUILD_2_ANNOUNCEMENT.md
|
||||||
CHANGELOG.md
|
CHANGELOG.md
|
||||||
.env.local
|
.env.local
|
||||||
F:\stremio-expo\android
|
android/
|
||||||
|
|
@ -540,7 +540,7 @@ const MainTabs = () => {
|
||||||
animation: 'timing',
|
animation: 'timing',
|
||||||
config: {
|
config: {
|
||||||
duration: 200,
|
duration: 200,
|
||||||
easing: Easing.inOut(Easing.ease),
|
easing: Easing.bezier(0.25, 0.1, 0.25, 1.0),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
sceneStyleInterpolator: ({ current }) => ({
|
sceneStyleInterpolator: ({ current }) => ({
|
||||||
|
|
|
||||||
|
|
@ -688,9 +688,9 @@ const styles = StyleSheet.create({
|
||||||
paddingTop: 0,
|
paddingTop: 0,
|
||||||
},
|
},
|
||||||
header: {
|
header: {
|
||||||
paddingHorizontal: 20,
|
paddingHorizontal: 15,
|
||||||
justifyContent: 'flex-end',
|
justifyContent: 'flex-end',
|
||||||
paddingBottom: 8,
|
paddingBottom: 0,
|
||||||
backgroundColor: 'transparent',
|
backgroundColor: 'transparent',
|
||||||
zIndex: 2,
|
zIndex: 2,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -520,7 +520,7 @@ const styles = StyleSheet.create({
|
||||||
flex: 1,
|
flex: 1,
|
||||||
},
|
},
|
||||||
header: {
|
header: {
|
||||||
paddingHorizontal: Math.max(16, width * 0.05),
|
paddingHorizontal: Math.max(1, width * 0.05),
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
alignItems: 'flex-end',
|
alignItems: 'flex-end',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue