diff --git a/lib/src/presentation/views/home_view.dart b/lib/src/presentation/views/home_view.dart index f1938e6d..dd93bf5a 100644 --- a/lib/src/presentation/views/home_view.dart +++ b/lib/src/presentation/views/home_view.dart @@ -44,26 +44,29 @@ class HomeView extends GetView { 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(), diff --git a/pubspec.yaml b/pubspec.yaml index 6116e464..0f3321eb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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'