Skip to content

Commit

Permalink
🚀UPDATE: Added Change Log File
Browse files Browse the repository at this point in the history
  • Loading branch information
LUK3D committed Jun 10, 2022
1 parent e3bffbb commit c21922f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# v0.2.1-alpha-1 (2022-06-11)
This version adds new Features and some Bug Fixes.
## Feature
* Added AbsoluteUnits and RelativeUnits Types to define the length on all components that requires number and unit.
* Added `width_size_measurement_unit<AbsoluteUnits|RelativeUnits>` and `height_size_measurement_unit<AbsoluteUnits|RelativeUnits>` to the Container

```ts
Container(
{
color:Colors.White,
height:40,
width:70,
width_size_measurement_unit:AbsoluteUnits.pixels,
height_size_measurement_unit:AbsoluteUnits.pixels,
}
)
```


Component to define the measurement unit for width and height.
* Added White and Black Colors.

## Bug Fixes
* Colors Class now return the correct colors from a given hexadecimal value.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luk3d/flutjs",
"version": "0.2.0",
"version": "0.2.1",
"description": "Javascript framework for flutter lovers",
"scripts": {
"build": "yarn tsc -p tsconfig.browser.json",
Expand Down

0 comments on commit c21922f

Please sign in to comment.