We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15cc060 commit 91a0282Copy full SHA for 91a0282
Example/App.js
@@ -242,6 +242,23 @@ export default class App extends Component {
242
<Text style={styles.simbol}>$</Text>
243
</InputSpinner>
244
</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>
262
</ScrollView>
263
);
264
}
0 commit comments