We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2983945 commit e2d5f44Copy full SHA for e2d5f44
2 files changed
CHANGELOG.md
@@ -2,9 +2,9 @@
2
3
## [0.1.1] - 2022-09-06
4
5
-移除实际未被使用的Markdown相关实现和相关依赖。
+Bugfix. Removed Markdown specification and its requirements.
6
7
## [0.1.0] - 2022-06-22
8
9
-初始版本。增加云端代码执行器`CloudExecutor`。
+Initial version. Add cloud code executor `CloudExecutor` class.
10
README.md
@@ -1,3 +1,18 @@
1
-# 云IDE组件库
+# `cloud_ide_widgets`
-实现云IDE的Flutter组件库。包括代码编辑器(editor)、终端(console)等。
+Cloud IDE Widgets for Flutter
+
+## Usage
+```dart
+import 'pacakge:cloud_ide_widgets/cloud_ide_widgets.dart';
+executor = CloudExecutor(
11
+ host: 'your.host.com',
12
+ path: '/path',
13
+);
14
15
+String input = 'print("Hello, world!")';
16
+String output = await executor.execute(input);
17
+print(output);
18
+```
0 commit comments