From e1c6a7d93f5fa9ce59f0988f63716ed3027d77f2 Mon Sep 17 00:00:00 2001 From: "donggua.lin" Date: Mon, 20 May 2019 15:45:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=A0=B9=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.gitignore => .gitignore | 0 .../.metadata => .metadata | 0 .../CHANGELOG.md => CHANGELOG.md | 0 LICENSE | 2 +- .../README.md => README.md | 0 .../plugins/GeneratedPluginRegistrant.java | 0 android/local.properties | 2 + ...alendar.iml => flutter_custom_calendar.iml | 2 +- flutter_custom_calendar/.idea/encodings.xml | 4 - .../.idea/libraries/Dart_Packages.xml | 172 ---------- .../.idea/libraries/Dart_SDK.xml | 19 -- .../.idea/libraries/Flutter_Plugins.xml | 7 - flutter_custom_calendar/.idea/misc.xml | 6 - flutter_custom_calendar/.idea/modules.xml | 8 - flutter_custom_calendar/.idea/workspace.xml | 320 ------------------ flutter_custom_calendar/LICENSE | 25 -- .../lib => lib}/base_day_view.dart | 0 .../lib => lib}/base_week_bar.dart | 0 .../lib => lib}/calendar_view.dart | 0 .../lib => lib}/constants/constants.dart | 0 .../lib => lib}/controller.dart | 0 .../lib => lib}/default_combine_day_view.dart | 0 .../lib => lib}/default_custom_day_view.dart | 0 .../lib => lib}/default_week_bar.dart | 0 .../demo_page/custom_style_page.dart | 0 .../demo_page/default_style_page.dart | 0 .../lib => lib}/demo_page/main.dart | 0 .../demo_page/multi_select_style_page.dart | 0 .../demo_page/progress_style_page.dart | 0 .../lib => lib}/flutter_custom_calendar.dart | 0 .../lib => lib}/model/date_model.dart | 0 .../lib => lib}/month_view.dart | 0 .../lib => lib}/month_view_pager.dart | 0 .../lib => lib}/style/style.dart | 0 .../lib => lib}/utils/date_util.dart | 0 .../lib => lib}/utils/lunar_util.dart | 0 .../lib => lib}/utils/math_util.dart | 0 .../lib => lib}/utils/solar_term_util.dart | 0 .../lib => lib}/week_view.dart | 0 .../pubspec.lock => pubspec.lock | 0 .../pubspec.yaml => pubspec.yaml | 0 .../flutter_custom_calendar_test.dart | 0 42 files changed, 4 insertions(+), 563 deletions(-) rename flutter_custom_calendar/.gitignore => .gitignore (100%) rename flutter_custom_calendar/.metadata => .metadata (100%) rename flutter_custom_calendar/CHANGELOG.md => CHANGELOG.md (100%) rename flutter_custom_calendar/README.md => README.md (100%) rename {flutter_custom_calendar/android => android}/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java (100%) create mode 100644 android/local.properties rename flutter_custom_calendar/flutter_custom_calendar.iml => flutter_custom_calendar.iml (99%) delete mode 100644 flutter_custom_calendar/.idea/encodings.xml delete mode 100644 flutter_custom_calendar/.idea/libraries/Dart_Packages.xml delete mode 100644 flutter_custom_calendar/.idea/libraries/Dart_SDK.xml delete mode 100644 flutter_custom_calendar/.idea/libraries/Flutter_Plugins.xml delete mode 100644 flutter_custom_calendar/.idea/misc.xml delete mode 100644 flutter_custom_calendar/.idea/modules.xml delete mode 100644 flutter_custom_calendar/.idea/workspace.xml delete mode 100644 flutter_custom_calendar/LICENSE rename {flutter_custom_calendar/lib => lib}/base_day_view.dart (100%) rename {flutter_custom_calendar/lib => lib}/base_week_bar.dart (100%) rename {flutter_custom_calendar/lib => lib}/calendar_view.dart (100%) rename {flutter_custom_calendar/lib => lib}/constants/constants.dart (100%) rename {flutter_custom_calendar/lib => lib}/controller.dart (100%) rename {flutter_custom_calendar/lib => lib}/default_combine_day_view.dart (100%) rename {flutter_custom_calendar/lib => lib}/default_custom_day_view.dart (100%) rename {flutter_custom_calendar/lib => lib}/default_week_bar.dart (100%) rename {flutter_custom_calendar/lib => lib}/demo_page/custom_style_page.dart (100%) rename {flutter_custom_calendar/lib => lib}/demo_page/default_style_page.dart (100%) rename {flutter_custom_calendar/lib => lib}/demo_page/main.dart (100%) rename {flutter_custom_calendar/lib => lib}/demo_page/multi_select_style_page.dart (100%) rename {flutter_custom_calendar/lib => lib}/demo_page/progress_style_page.dart (100%) rename {flutter_custom_calendar/lib => lib}/flutter_custom_calendar.dart (100%) rename {flutter_custom_calendar/lib => lib}/model/date_model.dart (100%) rename {flutter_custom_calendar/lib => lib}/month_view.dart (100%) rename {flutter_custom_calendar/lib => lib}/month_view_pager.dart (100%) rename {flutter_custom_calendar/lib => lib}/style/style.dart (100%) rename {flutter_custom_calendar/lib => lib}/utils/date_util.dart (100%) rename {flutter_custom_calendar/lib => lib}/utils/lunar_util.dart (100%) rename {flutter_custom_calendar/lib => lib}/utils/math_util.dart (100%) rename {flutter_custom_calendar/lib => lib}/utils/solar_term_util.dart (100%) rename {flutter_custom_calendar/lib => lib}/week_view.dart (100%) rename flutter_custom_calendar/pubspec.lock => pubspec.lock (100%) rename flutter_custom_calendar/pubspec.yaml => pubspec.yaml (100%) rename {flutter_custom_calendar/test => test}/flutter_custom_calendar_test.dart (100%) diff --git a/flutter_custom_calendar/.gitignore b/.gitignore similarity index 100% rename from flutter_custom_calendar/.gitignore rename to .gitignore diff --git a/flutter_custom_calendar/.metadata b/.metadata similarity index 100% rename from flutter_custom_calendar/.metadata rename to .metadata diff --git a/flutter_custom_calendar/CHANGELOG.md b/CHANGELOG.md similarity index 100% rename from flutter_custom_calendar/CHANGELOG.md rename to CHANGELOG.md diff --git a/LICENSE b/LICENSE index 842ecd6..7670ad0 100644 --- a/LICENSE +++ b/LICENSE @@ -22,4 +22,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/flutter_custom_calendar/README.md b/README.md similarity index 100% rename from flutter_custom_calendar/README.md rename to README.md diff --git a/flutter_custom_calendar/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java b/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java similarity index 100% rename from flutter_custom_calendar/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java rename to android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java diff --git a/android/local.properties b/android/local.properties new file mode 100644 index 0000000..527901e --- /dev/null +++ b/android/local.properties @@ -0,0 +1,2 @@ +sdk.dir=D:\\Users\\donggua.lin\\AppData\\Local\\Android\\sdk +flutter.sdk=D:\\Users\\donggua.lin\\Flutter\\flutter \ No newline at end of file diff --git a/flutter_custom_calendar/flutter_custom_calendar.iml b/flutter_custom_calendar.iml similarity index 99% rename from flutter_custom_calendar/flutter_custom_calendar.iml rename to flutter_custom_calendar.iml index 8d48a06..d9bd5ad 100644 --- a/flutter_custom_calendar/flutter_custom_calendar.iml +++ b/flutter_custom_calendar.iml @@ -12,8 +12,8 @@ - + \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/encodings.xml b/flutter_custom_calendar/.idea/encodings.xml deleted file mode 100644 index 15a15b2..0000000 --- a/flutter_custom_calendar/.idea/encodings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/libraries/Dart_Packages.xml b/flutter_custom_calendar/.idea/libraries/Dart_Packages.xml deleted file mode 100644 index b06b342..0000000 --- a/flutter_custom_calendar/.idea/libraries/Dart_Packages.xml +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/libraries/Dart_SDK.xml b/flutter_custom_calendar/.idea/libraries/Dart_SDK.xml deleted file mode 100644 index 79108aa..0000000 --- a/flutter_custom_calendar/.idea/libraries/Dart_SDK.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/libraries/Flutter_Plugins.xml b/flutter_custom_calendar/.idea/libraries/Flutter_Plugins.xml deleted file mode 100644 index b0f6971..0000000 --- a/flutter_custom_calendar/.idea/libraries/Flutter_Plugins.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/misc.xml b/flutter_custom_calendar/.idea/misc.xml deleted file mode 100644 index 5c94cb2..0000000 --- a/flutter_custom_calendar/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/flutter_custom_calendar/.idea/modules.xml b/flutter_custom_calendar/.idea/modules.xml deleted file mode 100644 index 5f98220..0000000 --- a/flutter_custom_calendar/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/flutter_custom_calendar/.idea/workspace.xml b/flutter_custom_calendar/.idea/workspace.xml deleted file mode 100644 index 96793e4..0000000 --- a/flutter_custom_calendar/.idea/workspace.xml +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - flutter_calendar - - - flutter_custom_calendar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -