Skip to content

Commit

Permalink
Fix Frame visability on transform
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdizarepour committed Jun 12, 2021
1 parent 1752c01 commit 187a76b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2

Fix Frame visability on transform

## 0.1.1

Fix handler transform issue
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/transformable_frame.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class _TransformableFrameState extends State<TransformableFrame> {
height: double.infinity,
width: double.infinity,
decoration: BoxDecoration(
border: _visable ? Border.all(color: Colors.grey) : null,
border: Border.all(color: Colors.grey),
),
),
Visibility(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: transformable_frame
description: Transformable frame.
version: 0.1.1
version: 0.1.2
author: Mehdi Zarepour<mehdi.zarepoor@gmail.com>
homepage: https://github.com/mehdizarepour/transformable_frame

Expand Down

0 comments on commit 187a76b

Please sign in to comment.