Skip to content

Commit

Permalink
adding dev mode switch to settings, which can only be on now
Browse files Browse the repository at this point in the history
  • Loading branch information
K committed Nov 26, 2024
1 parent ff3dedf commit 2448529
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nr-app/app/(tabs)/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ import {
SafeAreaView,
ScrollView,
StyleSheet,
Switch,
Text,
TextInput,
View,
} from "react-native";
import Toast from "react-native-root-toast";

Expand Down Expand Up @@ -151,6 +153,10 @@ export default function TabThreeScreen() {
}}
/>
</ScrollView>
<View>
<Switch value={true} />
<Text>dev mode</Text>
</View>
</SafeAreaView>
);
}
Expand Down

0 comments on commit 2448529

Please sign in to comment.