Skip to content

Commit

Permalink
fix(app): move image view into separate package
Browse files Browse the repository at this point in the history
  • Loading branch information
Numoy committed Dec 18, 2024
1 parent da6caa4 commit fe8b662
Show file tree
Hide file tree
Showing 21 changed files with 126 additions and 158 deletions.

This file was deleted.

2 changes: 0 additions & 2 deletions android/local.properties

This file was deleted.

14 changes: 0 additions & 14 deletions ios/Flutter/Generated.xcconfig

This file was deleted.

13 changes: 0 additions & 13 deletions ios/Flutter/flutter_export_environment.sh

This file was deleted.

19 changes: 0 additions & 19 deletions ios/Runner/GeneratedPluginRegistrant.h

This file was deleted.

35 changes: 0 additions & 35 deletions ios/Runner/GeneratedPluginRegistrant.m

This file was deleted.

29 changes: 29 additions & 0 deletions packages/survey_kit_image_answer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
build/
27 changes: 27 additions & 0 deletions packages/survey_kit_image_answer/.metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: "2663184aa79047d0a33a14a3b607954f8fdd8730"
channel: "stable"

project_type: plugin

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730

# User provided section

# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'
3 changes: 3 additions & 0 deletions packages/survey_kit_image_answer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.0.1

INFO: Inital release of the image_answer step for survey_kit
1 change: 1 addition & 0 deletions packages/survey_kit_image_answer/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TODO: Add your license here.
3 changes: 3 additions & 0 deletions packages/survey_kit_image_answer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# survey_kit_image_answer

Adds an Image-Answer question type to the Survey Kit package.
4 changes: 4 additions & 0 deletions packages/survey_kit_image_answer/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include: package:flutter_lints/flutter.yaml

# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
library image_answer_survey_kit;
library survey_kit_image_answer;

//export 'src/answer_format/answer_format.dart';
export 'src/answer_format/image_answer_format.dart';
export 'src/result/image_question_result.dart';
export 'src/view/image_answer_view.dart';
Loading

0 comments on commit fe8b662

Please sign in to comment.