Update padding across multiple screens for improved layout consistency

This update modifies the padding settings in the CatalogsList, HomeScreen, LibraryScreen, SettingsScreen, and discoverStyles files, increasing the bottom padding to 90 units. These changes enhance the overall layout and visual consistency across the application, ensuring a more cohesive user experience.
This commit is contained in:
tapframe 2025-05-04 18:42:39 +05:30
parent d6ddaca0f5
commit 8a31483a4c
5 changed files with 7 additions and 3 deletions

View file

@ -37,6 +37,7 @@ const CatalogsList = ({ catalogs, selectedCategory }: CatalogsListProps) => {
const styles = StyleSheet.create({
container: {
paddingVertical: 8,
paddingBottom: 90,
},
});

View file

@ -636,13 +636,13 @@ const styles = StyleSheet.create<any>({
flex: 1,
},
scrollContent: {
paddingBottom: 40,
paddingBottom: 90,
},
loadingMainContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
paddingBottom: 40,
paddingBottom: 90,
},
loadingText: {
marginTop: 12,

View file

@ -373,6 +373,7 @@ const styles = StyleSheet.create({
listContainer: {
paddingHorizontal: 12,
paddingVertical: 16,
paddingBottom: 90,
},
columnWrapper: {
justifyContent: 'space-between',
@ -463,6 +464,7 @@ const styles = StyleSheet.create({
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 32,
paddingBottom: 90,
},
emptyText: {
fontSize: 20,

View file

@ -545,7 +545,7 @@ const styles = StyleSheet.create({
scrollContent: {
flexGrow: 1,
width: '100%',
paddingBottom: 32,
paddingBottom: 90,
},
cardContainer: {
width: '100%',

View file

@ -55,6 +55,7 @@ const useDiscoverStyles = () => {
justifyContent: 'center',
alignItems: 'center',
paddingTop: 80,
paddingBottom: 90,
},
emptyText: {
color: currentTheme.colors.mediumGray,