diff --git a/README.md b/README.md
index 33fb9e9..6270e58 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,40 @@
-# 凡泰极客小程序 Flutter 插件
+
+
+
+
+
-本插件提供在 Flutter 运行环境中运行小程序能力。
+
+ FinClip Flutter SDK
+
+
+ 本项目提供在 Flutter 环境中运行小程序的能力
+
-## 集成
+
+ 👉 https://www.finclip.com/ 👈
+
-在项目pubspec.yaml文件中添加依赖
+-----
+## 🤔 FinClip 是什么?
-```
+有没有**想过**,开发好的微信小程序能放在自己的 APP 里直接运行,只需要开发一次小程序,就能在不同的应用中打开它,是不是很不可思议?
+
+有没有**试过**,在自己的 APP 中引入一个 SDK ,应用中不仅可以打开小程序,还能自定义小程序接口,修改小程序样式,是不是觉得更不可思议?
+
+这就是 FinClip ,就是有这么多不可思议!
+
+## ⚙️ Flutter 集成
+
+在项目 `pubspec.yaml` 文件中添加依赖
+
+```yaml
mop: latest.version
```
-## 示例
+## 🖥 示例
-```
+```flutter
import 'package:flutter/material.dart';
import 'dart:async';
import 'dart:io';
@@ -34,7 +56,7 @@ class _MyAppState extends State {
// Platform messages are asynchronous, so we initialize in an async method.
Future init() async {
- if (Platform.isIOS) {
+ if (Platform.isiOS) {
//com.finogeeks.mopExample
final res = await Mop.instance.initialize(
'22LyZEib0gLTQdU3MUauARlLry7JL/2fRpscC9kpGZQA', '1c11d7252c53e0b6',
@@ -115,15 +137,13 @@ class _MyAppState extends State {
}
```
-## 接口文档
+## 📋 接口文档
-1. 初始化小程序
-
-在使用sdk提供的api之前必须要初始化sdk,初始化sdk的接口为
+### 1. 初始化小程序
+
+ 在使用 SDK 提供的 API 之前必须要初始化 SDK ,初始化 SDK 的接口如下
```
-
- ///
///
/// initialize mop miniprogram engine.
/// 初始化小程序
@@ -137,18 +157,16 @@ class _MyAppState extends State {
{String apiServer, String apiPrefix})
```
-使用示例:
-
+使用示例:
```
final res = await Mop.instance.initialize(
'22LyZEib0gLTQdU3MUauARlLry7JL/2fRpscC9kpGZQA', '1c11d7252c53e0b6',
apiServer: 'https://api.finclip.com', apiPrefix: '/api/v1/mop');
```
-2. 打开小程序
+### 2. 打开小程序
```
- ///
///
/// open the miniprogram [appId] from the mop server.
/// 打开小程序
@@ -161,9 +179,9 @@ final res = await Mop.instance.initialize(
{final String path, final String query, final int sequence})
```
-3. 获取当前正在使用的小程序信息
+### 3. 获取当前正在使用的小程序信息
-当前小程序信息包括的字段有appId,name,icon,description,version,thumbnail
+当前小程序信息包括的字段有 `appId`, `name`, `icon`, `description`, `version`, `thumbnail`
```
///
@@ -175,7 +193,7 @@ final res = await Mop.instance.initialize(
Future