Skip to content

Commit

Permalink
v1.2.4+61-62
Browse files Browse the repository at this point in the history
  • Loading branch information
Khen Solomon Lethil committed Jun 12, 2022
1 parent 589722a commit 7ee13ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 35 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## 1.2.4+61
## 1.2.4+61-62

Improve

Expand Down
35 changes: 3 additions & 32 deletions lib/view/launch/bible/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -119,44 +119,15 @@ class _View extends _State with _Bar {
bool isAvailable = book.available > 0;
return Stack(
children: [
// Positioned(
// top: -18,
// right: 0,
// child: Transform(
// alignment: FractionalOffset.center,
// transform: Matrix4.identity()..rotateZ(40),
// child: Container(
// color: isAvailable
// ? book.selected
// ? Theme.of(context).highlightColor
// : Theme.of(context).disabledColor
// : book.selected
// ? Theme.of(context).highlightColor
// : Colors.transparent,
// width: 22,
// height: 55,
// child: Icon(
// Icons.noise_control_off,
// size: 24,
// color: isAvailable
// ? book.selected
// ? Theme.of(context).primaryColor
// : Theme.of(context).primaryColorDark
// : Colors.transparent,
// ),
// ),
// ),
// ),
Positioned(
top: -18,
top: -13,
right: 0,
child: ClipPath(
clipper: CustomTriangleClipper(),
child: Container(
width: 60,
height: 50,
alignment: const Alignment(1, .3),
// padding: const EdgeInsets.all(20),
alignment: const Alignment(1, .1),
decoration: BoxDecoration(
// gradient: LinearGradient(
// begin: Alignment.topCenter,
Expand Down Expand Up @@ -284,7 +255,7 @@ class _View extends _State with _Bar {
padding: const EdgeInsets.symmetric(horizontal: 5),
child: Icon(
Icons.drag_handle_rounded,
color: Theme.of(context).highlightColor,
color: Theme.of(context).errorColor,
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/view/launch/bible/state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class _State extends WidgetState with SingleTickerProviderStateMixin {
).animate(dragController);
late final Animation<Color?> colorAnimation = ColorTween(
begin: null,
end: Theme.of(context).highlightColor,
end: Theme.of(context).errorColor,
).animate(dragController);

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: the Holy Bible in languages
# Remove this line to publish to pub.dev
publish_to: 'none'

version: 1.2.4+61
version: 1.2.4+62

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down

0 comments on commit 7ee13ed

Please sign in to comment.