File tree 3 files changed +23
-2
lines changed
3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.0
2
+
3
+ - BREAKING: revamp controller structure for ` TypeThisController `
4
+ - docs(README): update documentation to encorporate the controller design change
5
+ - docs(example): update example app with new controller structure
6
+
7
+ ### Changes
8
+
9
+ This is how the controller looks and works now. More details in [ README] ( ./README.md#control-the-animation ) .
10
+
11
+ ``` dart
12
+ final controller = TypeThisController();
13
+
14
+ TypeThis(
15
+ string: 'Example String',
16
+ controller: controller,
17
+ );
18
+
19
+ controller.reset();
20
+ ```
21
+
1
22
## 0.3.0
2
23
3
24
- feat: add rich text effects using ` TypeThisMatcher ` that works with regex pattern
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ packages:
174
174
path: ".."
175
175
relative: true
176
176
source: path
177
- version: "0.3 .0"
177
+ version: "1.0 .0"
178
178
vector_math:
179
179
dependency: transitive
180
180
description:
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ issue_tracker: https://github.com/thecodexhub/typethis/issues
5
5
homepage : https://github.com/thecodexhub/typethis
6
6
documentation : https://github.com/thecodexhub/typethis
7
7
8
- version : 0.3 .0
8
+ version : 1.0 .0
9
9
10
10
environment :
11
11
sdk : " >=3.1.3 <4.0.0"
You can’t perform that action at this time.
0 commit comments