From bf3123aef4fe293e41ef3c66e8c6c9a435a3eab3 Mon Sep 17 00:00:00 2001 From: markkiepe Date: Thu, 23 May 2024 13:40:28 +0200 Subject: [PATCH] chore: initial commit --- example/.gitignore | 53 +++++++++++++++++++++++++++++++++++ example/README.md | 16 +++++++++++ example/analysis_options.yaml | 9 ++++++ example/lib/main.dart | 1 + example/pubspec.yaml | 34 ++++++++++++++++++++++ 5 files changed, 113 insertions(+) create mode 100644 example/.gitignore create mode 100644 example/README.md create mode 100644 example/analysis_options.yaml create mode 100644 example/lib/main.dart create mode 100644 example/pubspec.yaml diff --git a/example/.gitignore b/example/.gitignore new file mode 100644 index 0000000..8760a85 --- /dev/null +++ b/example/.gitignore @@ -0,0 +1,53 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.pub-cache/ +.pub/ +/build/ +.metadata +pubspec.lock + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release + +# Platforms +/android/ +/ios/ +/linux/ +/macos/ +/web/ +/windows/ diff --git a/example/README.md b/example/README.md new file mode 100644 index 0000000..2b3fce4 --- /dev/null +++ b/example/README.md @@ -0,0 +1,16 @@ +# example + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/example/analysis_options.yaml b/example/analysis_options.yaml new file mode 100644 index 0000000..31b4b51 --- /dev/null +++ b/example/analysis_options.yaml @@ -0,0 +1,9 @@ +include: package:flutter_iconica_analysis/analysis_options.yaml + +# Possible to overwrite the rules from the package + +analyzer: + exclude: + +linter: + rules: diff --git a/example/lib/main.dart b/example/lib/main.dart new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/example/lib/main.dart @@ -0,0 +1 @@ + diff --git a/example/pubspec.yaml b/example/pubspec.yaml new file mode 100644 index 0000000..ea5796e --- /dev/null +++ b/example/pubspec.yaml @@ -0,0 +1,34 @@ +name: example +description: "Demonstrates how to use the flutter_shopping user story." +publish_to: 'none' +version: 1.0.0+1 + +environment: + sdk: '>=3.3.4 <4.0.0' + +dependencies: + flutter: + sdk: flutter + flutter_shopping: + path: ../ + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_iconica_analysis: + git: + url: https://github.com/Iconica-Development/flutter_iconica_analysis + ref: 7.0.0 + +flutter: + uses-material-design: true + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic \ No newline at end of file