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:
tapframe 2025-07-05 20:16:35 +05:30
parent d8fd9a5684
commit 8481bb5609
4 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View file

@ -39,4 +39,4 @@ release_announcement.md
ALPHA_BUILD_2_ANNOUNCEMENT.md
CHANGELOG.md
.env.local
F:\stremio-expo\android
android/

View file

@ -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 }) => ({

View file

@ -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,
},

View file

@ -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',