We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 626486f + 06b5524 commit c114df3Copy full SHA for c114df3
components/ListView.js
@@ -144,6 +144,10 @@ class ListView extends Component {
144
// style
145
mappedProps.style = style.list;
146
mappedProps.contentContainerStyle = style.listContent;
147
+
148
+ if ((Platform.OS === 'ios') && (parseInt(Platform.Version, 10) === 13)) {
149
+ mappedProps.scrollIndicatorInsets={ right: 1 };
150
+ }
151
152
// rendering
153
mappedProps.ListHeaderComponent = this.createListHeaderComponent(renderHeader, autoHideHeader);
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@shoutem/ui",
3
- "version": "2.0.10",
+ "version": "2.0.11",
4
"description": "Styleable set of components for React Native applications",
5
"dependencies": {
6
"@shoutem/animation": "~0.12.4",
0 commit comments