@umituz/react-native-notifications 1.3.17 → 1.3.18

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-notifications",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "description": "Offline-first local notifications system for React Native apps using expo-notifications",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -150,7 +150,11 @@ export const ReminderForm: React.FC<ReminderFormProps> = ({
150
150
 
151
151
  const createStyles = (tokens: ReturnType<typeof useAppDesignTokens>) =>
152
152
  StyleSheet.create({
153
- container: { flex: 1, padding: 16 },
153
+ container: {
154
+ flex: 1,
155
+ padding: 16,
156
+ backgroundColor: tokens.colors.surface,
157
+ },
154
158
  section: { marginBottom: 20 },
155
159
  label: { color: tokens.colors.textPrimary, marginBottom: 8 },
156
160
  input: {