forked from react-native-oh-library/RNOHDCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetRandomValuesDemo.tsx
34 lines (30 loc) · 1004 Bytes
/
GetRandomValuesDemo.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React, { useState } from "react";
import { View, Text, StyleSheet, Button } from "react-native";
import "react-native-get-random-values";
export const GetRandomValues = () => {
const [randomValue, setRandomValue] = useState < any > [];
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#F5FCFF",
},
});
const clickBtn = () => {
const getRandomValues = global?.crypto?.getRandomValues(new Uint8Array(4));
console.log(JSON.stringify(getRandomValues), "click");
const array = Object.values(getRandomValues);
console.log(array, "click");
setRandomValue(array);
};
return (
<View style={styles.container}>
<Text style={{ fontSize: 20 }}> 点击获取随机数 </Text>
<Button onPress={clickBtn} title="click" />
{randomValue?.map((item: any, index: number) => {
return <Text key={index}>{item}</Text>;
})}
</View>
);
};