esoftplay 0.0.215 → 0.0.216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { LibComponent } from 'esoftplay/cache/lib/component/import';
|
|
3
3
|
import { LibFocus } from 'esoftplay/cache/lib/focus/import';
|
|
4
4
|
import React from 'react';
|
|
5
|
-
import { Platform, ScrollView, StyleSheet, Text,
|
|
5
|
+
import { Platform, ScrollView, StyleSheet, Text, View, ViewStyle } from 'react-native';
|
|
6
6
|
|
|
7
7
|
export interface LibCarrouselProps {
|
|
8
8
|
children: any,
|
|
@@ -158,9 +158,9 @@ export default class m extends LibComponent<LibCarrouselProps, LibCarrouselState
|
|
|
158
158
|
pages.push(<View><Text>You are supposed to add children inside Carousel</Text></View>);
|
|
159
159
|
}
|
|
160
160
|
return pages.map((page, i) => (
|
|
161
|
-
<
|
|
161
|
+
<View activeOpacity={1} style={[{ ...size }, pageStyle]} key={`page${i}`}>
|
|
162
162
|
{page}
|
|
163
|
-
</
|
|
163
|
+
</View>
|
|
164
164
|
));
|
|
165
165
|
}
|
|
166
166
|
|
|
@@ -343,13 +343,13 @@ export default class m extends LibComponent<LibCarrouselProps, LibCarrouselState
|
|
|
343
343
|
const bullets: any[] = [];
|
|
344
344
|
for (let i = 0; i < pageLength; i += 1) {
|
|
345
345
|
bullets.push(
|
|
346
|
-
<
|
|
346
|
+
<View activeOpacity={1} onPress={() => this.animateToPage(i)} key={`bullet${i}`}>
|
|
347
347
|
<View
|
|
348
348
|
style={i === this.state.currentPage ?
|
|
349
349
|
[styles.chosenBullet, this.props.chosenBulletStyle] :
|
|
350
350
|
[styles.bullet, this.props.bulletStyle]}
|
|
351
351
|
/>
|
|
352
|
-
</
|
|
352
|
+
</View>);
|
|
353
353
|
}
|
|
354
354
|
return (
|
|
355
355
|
<View style={[styles.bullets, this.props.bulletsContainerStyle]} pointerEvents="box-none">
|
|
@@ -366,16 +366,16 @@ export default class m extends LibComponent<LibCarrouselProps, LibCarrouselState
|
|
|
366
366
|
return (
|
|
367
367
|
<View style={styles.arrows} pointerEvents="box-none">
|
|
368
368
|
<View style={[styles.arrowsContainer, this.props.arrowsContainerStyle]} pointerEvents="box-none">
|
|
369
|
-
<
|
|
369
|
+
<View onPress={this._animatePreviousPage} style={this.props.arrowStyle} >
|
|
370
370
|
<Text style={this.props.leftArrowStyle}>
|
|
371
371
|
{this.props.leftArrowText ? this.props.leftArrowText : 'Left'}
|
|
372
372
|
</Text>
|
|
373
|
-
</
|
|
374
|
-
<
|
|
373
|
+
</View>
|
|
374
|
+
<View onPress={this._animateNextPage} style={this.props.arrowStyle} >
|
|
375
375
|
<Text style={this.props.rightArrowStyle}>
|
|
376
376
|
{this.props.rightArrowText ? this.props.rightArrowText : 'Right'}
|
|
377
377
|
</Text>
|
|
378
|
-
</
|
|
378
|
+
</View>
|
|
379
379
|
</View>
|
|
380
380
|
</View>
|
|
381
381
|
);
|