Skip to content

Commit 91a0282

Browse files
author
Marco Cesarato
committed
feat: add new mixed example
1 parent 15cc060 commit 91a0282

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Example/App.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,23 @@ export default class App extends Component {
242242
<Text style={styles.simbol}>$</Text>
243243
</InputSpinner>
244244
</View>
245+
<View style={styles.col}>
246+
<Text style={styles.text}>Mixed</Text>
247+
<InputSpinner
248+
style={styles.spinner}
249+
value={80}
250+
min={18}
251+
max={48}
252+
step={2}
253+
rounded={false}
254+
showBorder={true}
255+
height={35}
256+
editable={false}
257+
onChange={(value) => {
258+
this.setState({value: value});
259+
}}
260+
/>
261+
</View>
245262
</ScrollView>
246263
);
247264
}

0 commit comments

Comments
 (0)