From 648b25efc4d1444b934c607a65ea87c64d2e5b91 Mon Sep 17 00:00:00 2001 From: wuuzw <29149346+wuuzw@users.noreply.github.com> Date: Fri, 5 Feb 2021 13:44:47 -0500 Subject: [PATCH] add line break --- lib/app/modules/bookmarks/bookmark_controller.dart | 2 -- lib/app/modules/item/item_controller.dart | 1 + pubspec.yaml | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/modules/bookmarks/bookmark_controller.dart b/lib/app/modules/bookmarks/bookmark_controller.dart index 5047d9b..4c0beca 100644 --- a/lib/app/modules/bookmarks/bookmark_controller.dart +++ b/lib/app/modules/bookmarks/bookmark_controller.dart @@ -12,8 +12,6 @@ class BookmarkController = _BookmarksControllerBase with _$BookmarkController; abstract class _BookmarksControllerBase with Store { final BookmarkRepository _bookmarksRepository = Modular.get(); - _BookmarksControllerBase(); - @observable ObservableList bookmarks = ObservableList(); diff --git a/lib/app/modules/item/item_controller.dart b/lib/app/modules/item/item_controller.dart index eb35f4b..ab5159b 100644 --- a/lib/app/modules/item/item_controller.dart +++ b/lib/app/modules/item/item_controller.dart @@ -12,6 +12,7 @@ class ItemController = _ItemControllerBase with _$ItemController; abstract class _ItemControllerBase with Store { final ItemRepository _repository; + int _id; InAppWebViewController webViewController; diff --git a/pubspec.yaml b/pubspec.yaml index 87c4926..696c25c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,6 +17,7 @@ scripts: splash: $run flutter_native_splash:create apk: $get & $runner build --delete-conflicting-outputs & $build apk --split-per-abi appbundle: $get & $runner build --delete-conflicting-outputs & $build appbundle + environment: sdk: ">=2.7.0 <3.0.0"