mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-05 09:19:43 +00:00
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:
parent
d6ddaca0f5
commit
8a31483a4c
5 changed files with 7 additions and 3 deletions
|
|
@ -37,6 +37,7 @@ const CatalogsList = ({ catalogs, selectedCategory }: CatalogsListProps) => {
|
|||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
paddingVertical: 8,
|
||||
paddingBottom: 90,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -545,7 +545,7 @@ const styles = StyleSheet.create({
|
|||
scrollContent: {
|
||||
flexGrow: 1,
|
||||
width: '100%',
|
||||
paddingBottom: 32,
|
||||
paddingBottom: 90,
|
||||
},
|
||||
cardContainer: {
|
||||
width: '100%',
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ const useDiscoverStyles = () => {
|
|||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
paddingTop: 80,
|
||||
paddingBottom: 90,
|
||||
},
|
||||
emptyText: {
|
||||
color: currentTheme.colors.mediumGray,
|
||||
|
|
|
|||
Loading…
Reference in a new issue