{"id":246,"date":"2023-05-08T12:15:03","date_gmt":"2023-05-08T03:15:03","guid":{"rendered":"https:\/\/shugomatsuzawa.com\/techblog\/?p=246"},"modified":"2023-05-08T12:15:04","modified_gmt":"2023-05-08T03:15:04","slug":"react-native-calendar%e3%82%92%e3%83%80%e3%83%bc%e3%82%af%e3%83%a2%e3%83%bc%e3%83%89%e3%81%ab%e5%af%be%e5%bf%9c%e3%81%95%e3%81%9b%e3%82%8b%e3%81%9f%e3%82%81%e3%81%ab%e8%89%b2%e3%80%85%e9%a0%91","status":"publish","type":"post","link":"https:\/\/shugomatsuzawa.com\/techblog\/2023\/05\/08\/246\/","title":{"rendered":"React Native Calendar\u3092\u30c0\u30fc\u30af\u30e2\u30fc\u30c9\u306b\u5bfe\u5fdc\u3055\u305b\u308b\u305f\u3081\u306b\u8272\u3005\u9811\u5f35\u3063\u305f\u8a71\uff08React Native Paper\u4f7f\u7528\u74b0\u5883\uff09"},"content":{"rendered":"\n<p>React Native\u521d\u5fc3\u8005\u3060\u3051\u3069\u3001React Native Calendar\u3092\u30c0\u30fc\u30af\u30e2\u30fc\u30c9\u306b\u5bfe\u5fdc\u3055\u305b\u308b\u305f\u3081\u306b\u8272\u3005\u9811\u5f35\u3063\u305f\u8a71\u3002<br><a href=\"https:\/\/github.com\/shugomatsuzawa\/Facial-Paralysis-Care\" data-type=\"URL\" data-id=\"https:\/\/github.com\/shugomatsuzawa\/Facial-Paralysis-Care\" target=\"_blank\" rel=\"noreferrer noopener\">\u9854\u9762\u795e\u7d4c\u9ebb\u75fa\u30b1\u30a2\u30a2\u30d7\u30ea<\/a>\u3067\u4f7f\u3063\u3066\u3044\u308b\u306e\u3060\u304c\u3001\u30c6\u30fc\u30de\u3092\u52d5\u7684\u306b\u5909\u5316\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3060\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">RNC\u306e\u518d\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0<\/h2>\n\n\n\n<p>\u307e\u305a\u6700\u521d\u306b\u3084\u3063\u305f\u306e\u306f\u3001RNC\u3092\u518d\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u3059\u308b\u65b9\u6cd5\u3002<br>RNC\u306f\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u3057\u305f\u6642\u70b9\u306e\u30c6\u30fc\u30de\u3067\u8868\u793a\u3055\u308c\u308b\u306e\u3067\u3001\u30a2\u30d4\u30a2\u30e9\u30f3\u30b9\u304c\u5207\u308a\u66ff\u308f\u308b\u305f\u3073\u306bRNC\u3092\u518d\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u3059\u308b\u3068\u3044\u3046\u30b4\u30ea\u62bc\u3057\u306a\u65b9\u6cd5\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React, { useState } from 'react';\nimport { View, Appearance } from 'react-native';\nimport { useTheme, Button } from 'react-native-paper';\nimport { CalendarList } from 'react-native-calendars';\n\nconst HomeScreen = ({ navigation }) =&gt; {\n  const theme = useTheme();\n  const &#91;calendarKey, setCalendarKey] = useState(0);\n  const reloadCalendar = () =&gt; {\n    setTimeout(() =&gt; {setCalendarKey(calendarKey + 1)},100);\n  };\n  const changeAppearance = Appearance.addChangeListener(reloadCalendar);\n  \/\/ changeAppearance.remove();\n\n  return (\n    &lt;View&gt;\n      &lt;CalendarList\n        key={calendarKey}\n        horizontal={true}\n        pagingEnabled={true}\n        theme={{\n          calendarBackground: theme.colors.dynamic.surface,\n          textSectionTitleColor: theme.colors.dynamic.onSurface,\n          textSectionTitleDisabledColor: theme.colors.dynamic.onSurfaceDisabled,\n          monthTextColor: theme.colors.dynamic.onSurface,\n          arrowColor: theme.colors.dynamic.primary,\n        }}\n      \/&gt;\n      &lt;Button onPress={reloadCalendar}&gt;\u4eca\u65e5&lt;\/Button&gt;\n    &lt;\/View&gt;\n  );\n};\n\nexport default HomeScreen;<\/code><\/pre>\n\n\n\n<p>\u30bf\u30a4\u30df\u30f3\u30b0\u304c\u30b7\u30d3\u30a2\u3067\u3001\u666e\u901a\u306b\u3084\u308b\u3068OS\u304c\u30c0\u30fc\u30af\u30e2\u30fc\u30c9\u306b\u306a\u308b\u3068RNC\u304c\u30e9\u30a4\u30c8\u306b\u3001OS\u304c\u30e9\u30a4\u30c8\u30e2\u30fc\u30c9\u306b\u306a\u308b\u3068RNC\u304c\u30c0\u30fc\u30af\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308b\u3002<br>\u305d\u3053\u3067<code>setTimeout<\/code>\u3092\u4f7f\u3063\u30660.1\u79d2\u9045\u5ef6\u3055\u305b\u308b\u3068\u3044\u3046\u3082\u306f\u3084\u30af\u30bd\u30b3\u30fc\u30c9\u3060\u304c\u3001\u4ed6\u306b\u65b9\u6cd5\u304c\u601d\u3044\u3064\u304b\u306a\u3044\u306e\u3060\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">DynamicColorIOS<\/h2>\n\n\n\n<p>iOS\u306e\u5834\u5408<code>DynamicColorIOS<\/code>\u3092\u4f7f\u3046\u3068\u3044\u3046\u65b9\u6cd5\u304c\u3042\u308b\u3089\u3057\u3044\u3002<br><code>light<\/code>\u3001<code>dark<\/code>\u3001<code>highContrastLight<\/code>\u306a\u3069\u8907\u6570\u306e\u8272\u3092\u6307\u5b9a\u3057\u3066\u304a\u304f\u3068\u3001OS\u5074\u304c\u52dd\u624b\u306b\u5fc5\u8981\u306a\u8272\u3092\u9078\u3093\u3067\u8868\u793a\u3057\u3066\u304f\u308c\u308b\u3002<br>App\u30b9\u30a4\u30c3\u30c1\u30e3\u30fc\u3067\u3082\u8272\u304c\u5207\u308a\u66ff\u308f\u308b\u3057\u3001\u5207\u308a\u66ff\u3048\u6642\u306b\u306f\u7f8e\u3057\u3044\u30c7\u30a3\u30be\u30eb\u30d6\u30c8\u30e9\u30f3\u30b8\u30b7\u30e7\u30f3\u304c\u898b\u308c\u308b\u3002<br>\u5c11\u3057\u5b9f\u9a13\u3057\u305f\u3089RNC\u3067\u3082\u4f7f\u3048\u308b\u3002<br>\u306a\u3093\u3060\u3053\u308c\u6700\u9ad8\u3058\u3083\u306a\u3044\u304b\uff01\uff1f<\/p>\n\n\n\n<p>\u3053\u306e\u30a2\u30d7\u30ea\u3067\u306f<code>App.js<\/code>\u3067Material Design 3\u3092\u4e0a\u66f8\u304d\u3059\u308b\u5f62\u30672\u7a2e\u985e\u306e\u30ab\u30e9\u30fc\u30b9\u30ad\u30fc\u30e0\u3092\u4f5c\u3063\u3066\u5207\u308a\u66ff\u3048\u3066\u3044\u308b\u3002<br>iOS\u7528\u306b\u3082\u30461\u3064\u4f5c\u3089\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u306e\u306f\u6b63\u76f4\u9762\u5012\u3060\u304c\u3001<code>DynamicColorIOS<\/code>\u306f\u3084\u3063\u3066\u307f\u308b\u4fa1\u5024\u304c\u3042\u308b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React from 'react';\nimport { useColorScheme, Platform, DynamicColorIOS } from 'react-native';\nimport { MD3LightTheme, MD3DarkTheme, adaptNavigationTheme, Provider as PaperProvider } from 'react-native-paper';\nimport { NavigationContainer, DarkTheme as NavigationDarkTheme, DefaultTheme as NavigationDefaultTheme, } from '@react-navigation\/native';\nimport { createNativeStackNavigator } from '@react-navigation\/native-stack';\n\nimport HomeScreen from '.\/screens\/HomeScreen';\n\nconst Stack = createNativeStackNavigator();\n\nexport default function App() {\n  const colorScheme = useColorScheme();\n  const { LightTheme, DarkTheme } = adaptNavigationTheme({\n    reactNavigationLight: NavigationDefaultTheme,\n    reactNavigationDark: NavigationDarkTheme,\n  });\n\n  const customLightColors = {\n    \"primary\": \"rgb(0, 102, 137)\",\n    \"onPrimary\": \"rgb(255, 255, 255)\",\n    \"primaryContainer\": \"rgb(195, 232, 255)\",\n    \"onPrimaryContainer\": \"rgb(0, 30, 44)\",\n    \"secondary\": \"rgb(0, 106, 106)\",\n    \"onSecondary\": \"rgb(255, 255, 255)\",\n    \"secondaryContainer\": \"rgb(111, 247, 246)\",\n    \"onSecondaryContainer\": \"rgb(0, 32, 32)\",\n    \/\/ ...\n    \/\/ \u7701\u7565\n    \/\/ ...\n    \"border\": \"rgb(192, 199, 205)\",\n    \"card\": \"#ebf2f8\",\n    \"notification\": \"rgb(186, 26, 26)\",\n    \"text\": \"rgb(25, 28, 30)\",\n  }\n  const customDarkColors = {\n    \"primary\": \"rgb(76, 218, 218)\",\n    \"onPrimary\": \"rgb(0, 55, 55)\",\n    \"primaryContainer\": \"rgb(0, 79, 80)\",\n    \"onPrimaryContainer\": \"rgb(111, 247, 246)\",\n    \"secondary\": \"rgb(120, 209, 255)\",\n    \"onSecondary\": \"rgb(0, 53, 73)\",\n    \"secondaryContainer\": \"rgb(0, 76, 104)\",\n    \"onSecondaryContainer\": \"rgb(195, 232, 255)\",\n    \/\/ ...\n    \/\/ \u7701\u7565\n    \/\/ ...\n    \"border\": \"rgb(65, 72, 77)\",\n    \"card\": \"#001e2c\",\n    \"notification\": \"rgb(255, 180, 171)\",\n    \"text\": \"rgb(225, 226, 229)\",\n  }\n\n  const iosColors = Platform.OS === 'ios' ? {\n    \"primary\": DynamicColorIOS({\n      light: customLightColors.primary,\n      dark: customDarkColors.primary,\n    }),\n    \"onPrimary\": DynamicColorIOS({\n      light: customLightColors.onPrimary,\n      dark: customDarkColors.onPrimary,\n    }),\n    \"primaryContainer\": DynamicColorIOS({\n      light: customLightColors.primaryContainer,\n      dark: customDarkColors.primaryContainer,\n    }),\n    \"onPrimaryContainer\": DynamicColorIOS({\n      light: customLightColors.onPrimaryContainer,\n      dark: customDarkColors.onPrimaryContainer,\n    }),\n    \"secondary\": DynamicColorIOS({\n      light: customLightColors.secondary,\n      dark: customDarkColors.secondary,\n    }),\n    \"onSecondary\": DynamicColorIOS({\n      light: customLightColors.onSecondary,\n      dark: customDarkColors.onSecondary,\n    }),\n    \"secondaryContainer\": DynamicColorIOS({\n      light: customLightColors.secondaryContainer,\n      dark: customDarkColors.secondaryContainer,\n    }),\n    \"onSecondaryContainer\": DynamicColorIOS({\n      light: customLightColors.onSecondaryContainer,\n      dark: customDarkColors.onSecondaryContainer,\n    }),\n    \/\/ ...\n    \/\/ \u7701\u7565\n    \/\/ ...\n    \"border\": DynamicColorIOS({\n      light: customLightColors.border,\n      dark: customDarkColors.border,\n    }),\n    \"card\": DynamicColorIOS({\n      light: customLightColors.card,\n      dark: customDarkColors.card,\n    }),\n    \"notification\": DynamicColorIOS({\n      light: customLightColors.notification,\n      dark: customDarkColors.notification,\n    }),\n    \"text\": DynamicColorIOS({\n      light: customLightColors.text,\n      dark: customDarkColors.text,\n    }),\n  } : {};\n\n  const theme = Platform.OS === 'ios' &amp;&amp; colorScheme === 'dark' ? {\n    ...MD3DarkTheme,\n    ...DarkTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3DarkTheme.colors,\n      ...DarkTheme.colors,\n      ...iosColors,\n    },\n  } : Platform.OS === 'ios' ? {\n    ...MD3LightTheme,\n    ...LightTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3LightTheme.colors,\n      ...LightTheme.colors,\n      ...iosColors,\n    },\n  } : colorScheme === 'dark' ? {\n    ...MD3DarkTheme,\n    ...DarkTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3DarkTheme.colors,\n      ...DarkTheme.colors,\n      ...customDarkColors,\n    },\n  } : {\n    ...MD3LightTheme,\n    ...LightTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3LightTheme.colors,\n      ...LightTheme.colors,\n      ...customLightColors,\n    },\n  };\n\n  return (\n    &lt;PaperProvider theme={theme}&gt;\n      &lt;NavigationContainer theme={theme}&gt;\n        &lt;Stack.Navigator&gt;\n          &lt;Stack.Screen name=\"Home\" component={HomeScreen} \/&gt;\n        &lt;\/Stack.Navigator&gt;\n      &lt;\/NavigationContainer&gt;\n    &lt;\/PaperProvider&gt;\n  );\n}<\/code><\/pre>\n\n\n\n<p>\u30a8\u30e9\u30fc\u5410\u3044\u3066\u52d5\u304b\u306a\u3044\u3002<br>\u306a\u3093\u3067\uff1f\u30fb\u30fb\u30fb<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">React Native Paper\u306e\u554f\u984c<\/h2>\n\n\n\n<p>\u8272\u3005\u3084\u3063\u3066\u307f\u305f\u304c\u3001\u3069\u3046\u3084\u3089React Native Paper\u304c<code>DynamicColorIOS<\/code>\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u306a\u3044\u3068\u7d50\u8ad6\u3065\u3051\u308b\u3053\u3068\u306b\u3057\u305f\u3002<br>\u3053\u3046\u306a\u3063\u3066\u304f\u308b\u3068\u3082\u3046Material Design 3\u3092\u4e0a\u66f8\u304d\u3059\u308b\u65b9\u6cd5\u306f\u4f7f\u3048\u306a\u3044\u3002<br>\u72ec\u81ea\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u3067\u30c6\u30fc\u30de\u3092\u62e1\u5f35\u3059\u308b\u3057\u304b\u306a\u304f\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import React from 'react';\nimport { useColorScheme, Platform, DynamicColorIOS } from 'react-native';\nimport { MD3LightTheme, MD3DarkTheme, adaptNavigationTheme, Provider as PaperProvider } from 'react-native-paper';\nimport { NavigationContainer, DarkTheme as NavigationDarkTheme, DefaultTheme as NavigationDefaultTheme, } from '@react-navigation\/native';\nimport { createNativeStackNavigator } from '@react-navigation\/native-stack';\n\nimport HomeScreen from '.\/screens\/HomeScreen';\n\nconst Stack = createNativeStackNavigator();\n\nexport default function App() {\n  const colorScheme = useColorScheme();\n  const { LightTheme, DarkTheme } = adaptNavigationTheme({\n    reactNavigationLight: NavigationDefaultTheme,\n    reactNavigationDark: NavigationDarkTheme,\n  });\n\n  const customLightColors = {\n    \"primary\": \"rgb(0, 102, 137)\",\n    \"onPrimary\": \"rgb(255, 255, 255)\",\n    \"primaryContainer\": \"rgb(195, 232, 255)\",\n    \"onPrimaryContainer\": \"rgb(0, 30, 44)\",\n    \"secondary\": \"rgb(0, 106, 106)\",\n    \"onSecondary\": \"rgb(255, 255, 255)\",\n    \"secondaryContainer\": \"rgb(111, 247, 246)\",\n    \"onSecondaryContainer\": \"rgb(0, 32, 32)\",\n    \/\/ ...\n    \/\/ \u7701\u7565\n    \/\/ ...\n    \"border\": \"rgb(192, 199, 205)\",\n    \"card\": \"#ebf2f8\",\n    \"notification\": \"rgb(186, 26, 26)\",\n    \"text\": \"rgb(25, 28, 30)\",\n  }\n  const customDarkColors = {\n    \"primary\": \"rgb(76, 218, 218)\",\n    \"onPrimary\": \"rgb(0, 55, 55)\",\n    \"primaryContainer\": \"rgb(0, 79, 80)\",\n    \"onPrimaryContainer\": \"rgb(111, 247, 246)\",\n    \"secondary\": \"rgb(120, 209, 255)\",\n    \"onSecondary\": \"rgb(0, 53, 73)\",\n    \"secondaryContainer\": \"rgb(0, 76, 104)\",\n    \"onSecondaryContainer\": \"rgb(195, 232, 255)\",\n    \/\/ ...\n    \/\/ \u7701\u7565\n    \/\/ ...\n    \"border\": \"rgb(65, 72, 77)\",\n    \"card\": \"#001e2c\",\n    \"notification\": \"rgb(255, 180, 171)\",\n    \"text\": \"rgb(225, 226, 229)\",\n  }\n\n  const iosColors = Platform.OS === 'ios' ? {\n    \"dynamic\": {\n      \"primary\": DynamicColorIOS({\n        light: customLightColors.primary,\n        dark: customDarkColors.primary,\n      }),\n      \"onPrimary\": DynamicColorIOS({\n        light: customLightColors.onPrimary,\n        dark: customDarkColors.onPrimary,\n      }),\n      \"primaryContainer\": DynamicColorIOS({\n        light: customLightColors.primaryContainer,\n        dark: customDarkColors.primaryContainer,\n      }),\n      \"onPrimaryContainer\": DynamicColorIOS({\n        light: customLightColors.onPrimaryContainer,\n        dark: customDarkColors.onPrimaryContainer,\n      }),\n      \"secondary\": DynamicColorIOS({\n        light: customLightColors.secondary,\n        dark: customDarkColors.secondary,\n      }),\n      \"onSecondary\": DynamicColorIOS({\n        light: customLightColors.onSecondary,\n        dark: customDarkColors.onSecondary,\n      }),\n      \"secondaryContainer\": DynamicColorIOS({\n        light: customLightColors.secondaryContainer,\n        dark: customDarkColors.secondaryContainer,\n      }),\n      \"onSecondaryContainer\": DynamicColorIOS({\n        light: customLightColors.onSecondaryContainer,\n        dark: customDarkColors.onSecondaryContainer,\n      }),\n      \/\/ ...\n      \/\/ \u7701\u7565\n      \/\/ ...\n    },\n    \"border\": DynamicColorIOS({\n      light: customLightColors.border,\n      dark: customDarkColors.border,\n    }),\n    \"card\": DynamicColorIOS({\n      light: customLightColors.card,\n      dark: customDarkColors.card,\n    }),\n    \"notification\": DynamicColorIOS({\n      light: customLightColors.notification,\n      dark: customDarkColors.notification,\n    }),\n    \"text\": DynamicColorIOS({\n      light: customLightColors.text,\n      dark: customDarkColors.text,\n    }),\n  } : {};\n\n  const theme = Platform.OS === 'ios' &amp;&amp; colorScheme === 'dark' ? {\n    ...MD3DarkTheme,\n    ...DarkTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3DarkTheme.colors,\n      ...DarkTheme.colors,\n      ...customDarkColors,\n      ...iosColors,\n    },\n  } : Platform.OS === 'ios' ? {\n    ...MD3LightTheme,\n    ...LightTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3LightTheme.colors,\n      ...LightTheme.colors,\n      ...customLightColors,\n      ...iosColors,\n    },\n  } : colorScheme === 'dark' ? {\n    ...MD3DarkTheme,\n    ...DarkTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3DarkTheme.colors,\n      ...DarkTheme.colors,\n      ...customDarkColors,\n      \"dynamic\": {\n        ...customDarkColors,\n      }\n    },\n  } : {\n    ...MD3LightTheme,\n    ...LightTheme,\n    myOwnProperty: true,\n    colors: {\n      ...MD3LightTheme.colors,\n      ...LightTheme.colors,\n      ...customLightColors,\n      \"dynamic\": {\n        ...customLightColors,\n      }\n    },\n  };\n\n  return (\n    &lt;PaperProvider theme={theme}&gt;\n      &lt;NavigationContainer theme={theme}&gt;\n        &lt;Stack.Navigator&gt;\n          &lt;Stack.Screen name=\"Home\" component={HomeScreen} \/&gt;\n        &lt;\/Stack.Navigator&gt;\n      &lt;\/NavigationContainer&gt;\n    &lt;\/PaperProvider&gt;\n  );\n}<\/code><\/pre>\n\n\n\n<p>\u3053\u308c\u3067<code>style = {{ backgroundColor: theme.colors.dynamic.primary }}<\/code>\u307f\u305f\u3044\u306a\u611f\u3058\u3067\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u308b\u3002<br>\u975e\u5bfe\u5fdc\u306eReact Native Paper\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\uff08Card\u3068\u304bDialog\u3068\u304b\uff09\u3067\u306f\u3001\u5f93\u6765\u901a\u308a<code>theme.colors.dynamic.primary<\/code>\u3092\u4f7f\u3048\u3070OK\u3002<\/p>\n\n\n\n<p>\u3068\u3044\u3046\u308f\u3051\u3067\u3001\u5168\u3066\u306e\u30b9\u30af\u30ea\u30fc\u30f3\u3067\u30b9\u30bf\u30a4\u30eb\u3092\u66f8\u304d\u63db\u3048\u308b\u5730\u7344\u306e\u4f5c\u696d\u304c\u59cb\u307e\u308b\u306e\u3067\u3042\u3063\u305f\u30fb\u30fb\u30fb<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u53c2\u8003<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/github.com\/wix\/react-native-calendars\/issues\/982\" data-type=\"URL\" data-id=\"https:\/\/github.com\/wix\/react-native-calendars\/issues\/982\" target=\"_blank\" rel=\"noreferrer noopener\">Changing theme dynamically \u00b7 Issue #982 \u00b7 wix\/react-native-calendars<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/github.com\/facebook\/react-native\/issues\/28525\" data-type=\"URL\" data-id=\"https:\/\/github.com\/facebook\/react-native\/issues\/28525\" target=\"_blank\" rel=\"noreferrer noopener\">Appearance addChangeListener handler is called when app goes to background with wrong color scheme \u00b7 Issue #28525 \u00b7 facebook\/react-native<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/reactnative.dev\/docs\/dynamiccolorios\" data-type=\"URL\" data-id=\"https:\/\/reactnative.dev\/docs\/dynamiccolorios\" target=\"_blank\" rel=\"noreferrer noopener\">DynamicColorIOS \u00b7 React Native<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/callstack.github.io\/react-native-paper\/docs\/guides\/theming\/#sync-dynamic-colors-with-system-colors\" data-type=\"URL\" data-id=\"https:\/\/callstack.github.io\/react-native-paper\/docs\/guides\/theming\/#sync-dynamic-colors-with-system-colors\" target=\"_blank\" rel=\"noreferrer noopener\">Theming | React Native Paper<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/callstack.github.io\/react-native-paper\/docs\/guides\/theming-with-react-navigation\" data-type=\"URL\" data-id=\"https:\/\/callstack.github.io\/react-native-paper\/docs\/guides\/theming-with-react-navigation\" target=\"_blank\" rel=\"noreferrer noopener\">Theming with React Navigation | React Native Paper<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/diary.ssig33.com\/posts\/441\/\" data-type=\"URL\" data-id=\"https:\/\/diary.ssig33.com\/posts\/441\/\" target=\"_blank\" rel=\"noreferrer noopener\">React \u3067\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u3092\u9045\u5ef6\u3055\u305b\u305f\u3044 &#8211; Diary<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"React Native\u521d\u5fc3\u8005\u3060\u3051\u3069\u3001React Native Calendar\u3092\u30c0\u30fc\u30af\u30e2\u30fc\u30c9\u306b\u5bfe\u5fdc\u3055\u305b\u308b\u305f\u3081\u306b\u8272\u3005\u9811\u5f35\u3063\u305f\u8a71\u3002\u9854\u9762\u795e\u7d4c\u9ebb\u75fa\u30b1\u30a2\u30a2\u30d7\u30ea\u3067\u4f7f\u3063\u3066\u3044\u308b\u306e\u3060\u304c\u3001\u30c6\u30fc\u30de\u3092\u52d5\u7684\u306b\u5909\u5316\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3060\u3002 RN [&hellip;]","protected":false},"author":1,"featured_media":159,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":3,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"","footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[75],"tags":[74,71,72,73,10],"class_list":["post-246","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-app-development","tag-expo","tag-react-native","tag-react-native-calendar","tag-react-native-paper","tag-memo"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/shugomatsuzawa.com\/techblog\/wp-content\/uploads\/sites\/3\/2022\/10\/meeting-g125fcd6b9_1920.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/posts\/246","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/comments?post=246"}],"version-history":[{"count":3,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/posts\/246\/revisions"}],"predecessor-version":[{"id":249,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/posts\/246\/revisions\/249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/media\/159"}],"wp:attachment":[{"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/media?parent=246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/categories?post=246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shugomatsuzawa.com\/techblog\/wp-json\/wp\/v2\/tags?post=246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}