Skip to content

Commit

Permalink
Bug Fixes for stable channel
Browse files Browse the repository at this point in the history
  • Loading branch information
iampawan committed Mar 21, 2020
1 parent 792920f commit dfa60aa
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 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.1] - March 21, 2020

- Bug Fixes for stable channel

## [0.1.0] - March 20, 2020

- initial release to public.
11 changes: 9 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0+1"
petitparser:
dependency: transitive
description:
Expand Down Expand Up @@ -162,7 +169,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.15"
version: "0.2.11"
typed_data:
dependency: transitive
description:
Expand All @@ -183,7 +190,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.0"
version: "0.1.1"
xml:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions lib/src/flutter/card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class _VelocityXCardBuilder extends VelocityXWidgetBuilder<Widget>
}
final Widget _child;

Color _shadowColor;
// Color _shadowColor;
double _elevation = 1.0;
ShapeBorder _shape;

Expand All @@ -58,7 +58,7 @@ class _VelocityXCardBuilder extends VelocityXWidgetBuilder<Widget>
clipBehavior: Clip.antiAlias,
elevation: _elevation,
shape: roundedValue.isNotNull ? RoundedRectangleBorder(borderRadius: BorderRadius.circular(roundedValue)) : _shape,
shadowColor: _shadowColor,
// shadowColor: _shadowColor,
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/flutter/selectable_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class VelocityXSelectableTextBuilder extends VelocityXWidgetBuilder<SelectableTe
enableInteractiveSelection: true,

// showCursor: true,
textScaleFactor: _scaleFactor,
// textScaleFactor: _scaleFactor,
style: _textStyle?.copyWith(
color: velocityColor,
fontSize: _fontSize ?? 14.0,
Expand Down
9 changes: 8 additions & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0+1"
petitparser:
dependency: transitive
description:
Expand Down Expand Up @@ -162,7 +169,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.15"
version: "0.2.11"
typed_data:
dependency: transitive
description:
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: velocity_x
description: A minimalist Flutter framework for rapidly building custom designs.
version: 0.1.0
version: 0.1.1
homepage: https://velocity-x.web.app
repository: https://github.com/iampawan/VelocityX

Expand Down

0 comments on commit dfa60aa

Please sign in to comment.