Skip to content

Commit

Permalink
add locale buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
henninghall committed May 17, 2024
1 parent 5994764 commit bf412b5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/Rn071/src/examples/Advanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,18 @@ export default class Advanced extends Component {
onPress={() => this.setState({minuteInterval: 15})}
text={'15min interval'}
/>
<MicroButton
onPress={() => this.setState({locale: 'en-US'})}
text={'locale en-US'}
/>
<MicroButton
onPress={() => this.setState({locale: 'en-GB'})}
text={'locale en-GB'}
/>
<MicroButton
onPress={() => this.setState({locale: 'ko-KR'})}
text={'locale ko-KR'}
/>
<View style={{width: '100%', height: 2, backgroundColor: '#eee'}} />
<View style={{}}>
<MicroText
Expand Down

0 comments on commit bf412b5

Please sign in to comment.