mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +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
|
||||
CHANGELOG.md
|
||||
.env.local
|
||||
F:\stremio-expo\android
|
||||
android/
|
||||
|
|
@ -540,7 +540,7 @@ const MainTabs = () => {
|
|||
animation: 'timing',
|
||||
config: {
|
||||
duration: 200,
|
||||
easing: Easing.inOut(Easing.ease),
|
||||
easing: Easing.bezier(0.25, 0.1, 0.25, 1.0),
|
||||
},
|
||||
},
|
||||
sceneStyleInterpolator: ({ current }) => ({
|
||||
|
|
|
|||
|
|
@ -688,9 +688,9 @@ const styles = StyleSheet.create({
|
|||
paddingTop: 0,
|
||||
},
|
||||
header: {
|
||||
paddingHorizontal: 20,
|
||||
paddingHorizontal: 15,
|
||||
justifyContent: 'flex-end',
|
||||
paddingBottom: 8,
|
||||
paddingBottom: 0,
|
||||
backgroundColor: 'transparent',
|
||||
zIndex: 2,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -520,7 +520,7 @@ const styles = StyleSheet.create({
|
|||
flex: 1,
|
||||
},
|
||||
header: {
|
||||
paddingHorizontal: Math.max(16, width * 0.05),
|
||||
paddingHorizontal: Math.max(1, width * 0.05),
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'flex-end',
|
||||
|
|
|
|||
Loading…
Reference in a new issue