-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
33 lines (30 loc) · 893 Bytes
/
App.js
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
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from "react-native";
import RadioButton from "./components/RadioButton";
import { useState } from "react";
export default function App() {
const radioButtonOptions = ["Option 1", "Option 2", "Option 3", "Option 4"];
const [selectedOption, setSelectedOption] = useState(radioButtonOptions[0]);
return (
<View style={styles.container}>
<StatusBar style="auto" />
{radioButtonOptions.map((singleOption) => (
<RadioButton
key={singleOption}
selectedOption={selectedOption}
setSelectedOption={setSelectedOption}
>
{singleOption}
</RadioButton>
))}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});