From 21f3173ad6a50ef692b5ee97aa17f92352e3da7d Mon Sep 17 00:00:00 2001 From: skwidz Date: Mon, 15 Oct 2018 19:26:44 -0600 Subject: [PATCH 1/3] remove border from tab container --- viewpager/indicator/PagerTabIndicator.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/viewpager/indicator/PagerTabIndicator.js b/viewpager/indicator/PagerTabIndicator.js index d127800b..246b01f1 100644 --- a/viewpager/indicator/PagerTabIndicator.js +++ b/viewpager/indicator/PagerTabIndicator.js @@ -87,8 +87,6 @@ const styles = StyleSheet.create({ flexDirection: 'row', paddingTop: 8, paddingBottom: 4, - borderTopWidth: 0.5, - borderTopColor: '#E0E0E0', backgroundColor: '#F7F7F7' }, itemContainer: { From 678384e8910184a248e1d674b3b06c506e2c3165 Mon Sep 17 00:00:00 2001 From: skwidz Date: Mon, 15 Oct 2018 19:35:32 -0600 Subject: [PATCH 2/3] update docs to reflect change --- docs/tabindicator.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tabindicator.md b/docs/tabindicator.md index 740de309..20d52358 100644 --- a/docs/tabindicator.md +++ b/docs/tabindicator.md @@ -3,6 +3,7 @@ | Prop | Type | Default | Note | | --- | --- | --- | --- | +| style | ViewPropTypes.style | --- | --- | | tabs | PropTypes.arrayOf(PropTypes.shape({text: PropTypes.string,iconSource: Image.propTypes.source,selectedIconSource: Image.propTypes.source})) | | | | itemStyle | ViewPropTypes.style | | | | selectedItemStyle | ViewPropTypes.style | | | From c481c3f54e0ee01d491edf5fe7ccf8956f5b5a72 Mon Sep 17 00:00:00 2001 From: skwidz Date: Mon, 15 Oct 2018 19:36:09 -0600 Subject: [PATCH 3/3] typo --- docs/tabindicator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tabindicator.md b/docs/tabindicator.md index 20d52358..894e434e 100644 --- a/docs/tabindicator.md +++ b/docs/tabindicator.md @@ -3,7 +3,7 @@ | Prop | Type | Default | Note | | --- | --- | --- | --- | -| style | ViewPropTypes.style | --- | --- | +| style | ViewPropTypes.style | | | | tabs | PropTypes.arrayOf(PropTypes.shape({text: PropTypes.string,iconSource: Image.propTypes.source,selectedIconSource: Image.propTypes.source})) | | | | itemStyle | ViewPropTypes.style | | | | selectedItemStyle | ViewPropTypes.style | | |