Skip to content

Commit

Permalink
1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LezdCS committed Sep 4, 2023
1 parent 360e6db commit f9f22dc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
43 changes: 23 additions & 20 deletions lib/src/presentation/views/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,26 +44,29 @@ class HomeView extends GetView<HomeViewController> {
resizeToAvoidBottomInset: true,
body: Obx(
() => FloatingDraggableWidget(
floatingWidget: InkWell(
onTap: () {
controller.displayDashboard.value =
!controller.displayDashboard.value;
},
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: context.theme.colorScheme.tertiary,
),
child: const Icon(
Icons.dashboard_rounded,
size: 30,
),
),
),
floatingWidgetWidth: 50,
floatingWidgetHeight: 110,
dy: height - 130,
dx: width - 70,
floatingWidget: Container(),
// InkWell(
// onTap: () {
// controller.displayDashboard.value =
// !controller.displayDashboard.value;
// },
// child: Container(
// decoration: BoxDecoration(
// shape: BoxShape.circle,
// color: context.theme.colorScheme.tertiary,
// ),
// child: const Icon(
// Icons.dashboard_rounded,
// size: 30,
// ),
// ),
// ),
floatingWidgetWidth: 0,
floatingWidgetHeight: 0,
// floatingWidgetWidth: 50,
// floatingWidgetHeight: 110,
dy: 0,
dx: 0,
mainScreenWidget: Listener(
onPointerUp: (_) => {
FocusScope.of(context).unfocus(),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.8.4+34
version: 1.8.5+35

environment:
sdk: '>=2.19.0-0 <4.0.0'
Expand Down

0 comments on commit f9f22dc

Please sign in to comment.