Skip to content

Commit

Permalink
Merge pull request #48 from bosung90/master
Browse files Browse the repository at this point in the history
Update dot color to match native ios style. Fix dot getting cutoff
  • Loading branch information
race604 committed Jun 17, 2016
2 parents cfe6073 + db525c8 commit f583355
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DefaultViewPageIndicator.js
Expand Up @@ -13,7 +13,7 @@ var {

var deviceWidth = Dimensions.get('window').width;
var DOT_SIZE = 6;
var DOT_SAPCE = 3;
var DOT_SAPCE = 4;

var styles = StyleSheet.create({
tab: {
Expand All @@ -30,7 +30,7 @@ var styles = StyleSheet.create({
width: DOT_SIZE,
height: DOT_SIZE,
borderRadius: DOT_SIZE / 2,
backgroundColor: 'rgba(100,100,100,0.5)',
backgroundColor: '#E0E1E2',
marginLeft: DOT_SAPCE,
marginRight: DOT_SAPCE,
},
Expand All @@ -40,7 +40,7 @@ var styles = StyleSheet.create({
width: DOT_SIZE,
height: DOT_SIZE,
borderRadius: DOT_SIZE / 2,
backgroundColor: 'rgba(250,250,250,0.8)',
backgroundColor: '#80ACD0',
margin: DOT_SAPCE,
bottom: 0,
},
Expand Down

0 comments on commit f583355

Please sign in to comment.