Skip to content

Commit fd343ef

Browse files
author
denny.deng
committed
docs and prepare for publishing 4.0.2 ver.
1 parent a1b55ff commit fd343ef

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100

101101
* add ElevatedButtonParser.
102102

103+
## [4.0.2] - add DividerWidget and RotatedBox widget parser
104+
105+
* add DividerWidget and RotatedBox widget parser.
103106

104107

105108

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ Already completed widgets:
316316
* [Offstage](https://github.com/dengyin2000/dynamic_widget/blob/master/WIDGETS.md#offstage-widget)
317317
* [OverflowBox](https://github.com/dengyin2000/dynamic_widget/blob/master/WIDGETS.md#overflowbox-widget)
318318
* [Divider](https://github.com/dengyin2000/dynamic_widget/blob/master/WIDGETS.md#divider-widget)
319+
* [RotatedBox](https://github.com/dengyin2000/dynamic_widget/blob/master/WIDGETS.md#rotatedbox-widget)
319320

320321

321322
You can view [Currently support widgets and properties](WIDGETS.md) here.

WIDGETS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
- [Offstage Widget](#offstage-widget)
4646
- [OverflowBox Widget](#overflowbox-widget)
4747
- [Divider Widget](#divider-widget)
48+
- [RotatedBox Widget](#rotatedbox-widget)
4849

4950
## Container Widget
5051

@@ -596,3 +597,11 @@ Divider, here to see flutter [Divider](https://api.flutter.dev/flutter/material/
596597
| endIndent | The amount of empty space to the trailing edge of the divider. | double | 8.0 | |
597598
| color | The color to use when painting the line. | String | "#AARRGGBB" or "#RRGGBB" | "#FF00FF"<br>"#00FF00FF" |
598599

600+
## RotatedBox Widget
601+
602+
RotatedBox, here to see flutter [RotatedBox](https://api.flutter.dev/flutter/widgets/RotatedBox-class.html) definition. Supported json properties:
603+
604+
| property | definition | type | value | sample |
605+
| ------------- | ------------------------------------------------------ | ------ | ----------------------------------------------------- | -------------------------------------------------------------------------- |
606+
| quarterTurns | The number of clockwise quarter turns the child should be rotated. | int | 3 | |
607+
| child | The widget below this widget in the tree. | Widget | | |

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dynamic_widget
22
description: A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code。
3-
version: 4.0.1
3+
version: 4.0.2
44
homepage: https://github.com/dengyin2000/dynamic_widget
55

66
environment:

0 commit comments

Comments
 (0)