diff --git a/zh-cn/react-native-date-picker.md b/zh-cn/react-native-date-picker.md
new file mode 100644
index 0000000000000000000000000000000000000000..d4a961ec054aad9bec02957b6d4a741cf77eeca7
--- /dev/null
+++ b/zh-cn/react-native-date-picker.md
@@ -0,0 +1,235 @@
+
+模板版本:v0.2.2
+
+
+
react-native-date-picker
+
+
+
+
+
+
+
+
+
+
+
+
+> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-date-picker)
+
+
+## 安装与使用
+
+请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-date-picker Releases](https://github.com/react-native-oh-library/react-native-date-picker/releases),并下载适用版本的 tgz 包。
+
+进入到工程目录并输入以下命令:
+
+> [!TIP] # 处替换为 tgz 包的路径
+
+
+
+#### **npm**
+
+```bash
+npm install @react-native-oh-tpl/react-native-date-picker@file:#
+```
+
+#### **yarn**
+
+```bash
+yarn add @react-native-oh-tpl/react-native-date-picker@file:#
+```
+
+
+
+下面的代码展示了这个库的基本使用场景:
+
+> [!WARNING] 使用时 import 的库名不变。
+
+```js
+import React, { useState } from 'react'
+import { Button } from 'react-native'
+import DatePicker from 'react-native-date-picker'
+
+export default () => {
+ const [date, setDate] = useState(new Date())
+ const [open, setOpen] = useState(false)
+
+ return (
+ <>
+