Skip to content

Commit e2d5f44

Browse files
committed
release: v0.1.1
1 parent 2983945 commit e2d5f44

2 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## [0.1.1] - 2022-09-06
44

5-
移除实际未被使用的Markdown相关实现和相关依赖。
5+
Bugfix. Removed Markdown specification and its requirements.
66

77
## [0.1.0] - 2022-06-22
88

9-
初始版本。增加云端代码执行器`CloudExecutor`
9+
Initial version. Add cloud code executor `CloudExecutor` class.
1010

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1-
# 云IDE组件库
1+
# `cloud_ide_widgets`
22

3-
实现云IDE的Flutter组件库。包括代码编辑器(editor)、终端(console)等。
3+
Cloud IDE Widgets for Flutter
4+
5+
## Usage
6+
7+
```dart
8+
import 'pacakge:cloud_ide_widgets/cloud_ide_widgets.dart';
9+
10+
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

Comments
 (0)