Browse Source

Removed proximo list bottom padding

Arnaud Vergnet 3 years ago
parent
commit
4af00b8802
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      src/screens/Services/Proximo/ProximoListScreen.js

+ 0
- 3
src/screens/Services/Proximo/ProximoListScreen.js View File

@@ -9,7 +9,6 @@ import {stringMatchQuery} from "../../../utils/Search";
9 9
 import ProximoListItem from "../../../components/Lists/Proximo/ProximoListItem";
10 10
 import MaterialHeaderButtons, {Item} from "../../../components/Overrides/CustomHeaderButton";
11 11
 import {withCollapsible} from "../../../utils/withCollapsible";
12
-import CustomTabBar from "../../../components/Tabbar/CustomTabBar";
13 12
 
14 13
 function sortPrice(a, b) {
15 14
     return a.price - b.price;
@@ -306,7 +305,6 @@ class ProximoListScreen extends React.Component<Props, State> {
306 305
                 <CustomModal onRef={this.onModalRef}>
307 306
                     {this.state.modalCurrentDisplayItem}
308 307
                 </CustomModal>
309
-                {/*$FlowFixMe*/}
310 308
                 <Animated.FlatList
311 309
                     data={this.listData}
312 310
                     extraData={this.state.currentSearchString + this.state.currentSortMode}
@@ -320,7 +318,6 @@ class ProximoListScreen extends React.Component<Props, State> {
320 318
                     onScroll={onScroll}
321 319
                     contentContainerStyle={{
322 320
                         paddingTop: containerPaddingTop,
323
-                        paddingBottom: CustomTabBar.TAB_BAR_HEIGHT
324 321
                     }}
325 322
                     scrollIndicatorInsets={{top: scrollIndicatorInsetTop}}
326 323
                 />

Loading…
Cancel
Save