@umituz/react-native-settings 4.20.37 → 4.20.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-settings",
3
- "version": "4.20.37",
3
+ "version": "4.20.38",
4
4
  "description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, and rating",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -9,6 +9,7 @@ import React, { useMemo } from "react";
9
9
  import { createStackNavigator } from "@react-navigation/stack";
10
10
  import { useAppDesignTokens } from "@umituz/react-native-design-system";
11
11
  import { useLocalization } from "@umituz/react-native-localization";
12
+ import { NotificationSettingsScreen } from "@umituz/react-native-notifications";
12
13
  import { SettingsScreen } from "../screens/SettingsScreen";
13
14
  import { AppearanceScreen } from "../screens/AppearanceScreen";
14
15
  import { LegalScreen } from "../../domains/legal";
@@ -132,6 +133,16 @@ export const SettingsStackNavigator: React.FC<SettingsStackNavigatorProps> = ({
132
133
  }}
133
134
  />
134
135
 
136
+ <Stack.Screen
137
+ name="Notifications"
138
+ component={NotificationSettingsScreen}
139
+ options={{
140
+ headerShown: true,
141
+ headerTitle: t("settings.notifications.title"),
142
+ headerTitleAlign: "center",
143
+ }}
144
+ />
145
+
135
146
  {faqData && faqData.categories.length > 0 && (
136
147
  <Stack.Screen
137
148
  name="FAQ"
@@ -39,6 +39,7 @@ export type SettingsStackParamList = {
39
39
  Appearance: undefined;
40
40
  About: undefined;
41
41
  Legal: undefined;
42
+ Notifications: undefined;
42
43
  FAQ: undefined;
43
44
  };
44
45