Skip to content

Commit

Permalink
feat: add new mixed example
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Cesarato committed Oct 16, 2020
1 parent 15cc060 commit 91a0282
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Example/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,23 @@ export default class App extends Component {
<Text style={styles.simbol}>$</Text>
</InputSpinner>
</View>
<View style={styles.col}>
<Text style={styles.text}>Mixed</Text>
<InputSpinner
style={styles.spinner}
value={80}
min={18}
max={48}
step={2}
rounded={false}
showBorder={true}
height={35}
editable={false}
onChange={(value) => {
this.setState({value: value});
}}
/>
</View>
</ScrollView>
);
}
Expand Down

0 comments on commit 91a0282

Please sign in to comment.