Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[63] [UI] Survey - Questions screen #73

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release
/lib/main-development.dart
2 changes: 0 additions & 2 deletions .run/Production.run.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Production" type="FlutterRunConfigurationType" factoryName="Flutter">
<option name="additionalArgs" value="--no-sound-null-safety" />
<option name="attachArgs" value="--no-sound-null-safety" />
<option name="buildFlavor" value="production" />
<option name="filePath" value="$PROJECT_DIR$/lib/main-production.dart" />
<method v="2" />
Expand Down
2 changes: 0 additions & 2 deletions .run/Staging.run.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Staging" type="FlutterRunConfigurationType" factoryName="Flutter">
<option name="additionalArgs" value="--no-sound-null-safety" />
<option name="attachArgs" value="--no-sound-null-safety" />
<option name="buildFlavor" value="staging" />
<option name="filePath" value="$PROJECT_DIR$/lib/main-staging.dart" />
<method v="2" />
Expand Down
4 changes: 4 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ linter:
sort_pub_dependencies: false

analyzer:
exclude:
- test/**/*.mocks.dart

errors:
import_of_legacy_library_into_null_safe: ignore
use_setters_to_change_properties: ignore
prefer_function_declarations_over_variables: ignore
Binary file added assets/images/2.0x/main-background-dimmed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/3.0x/main-background-dimmed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/arrow-right-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions assets/images/logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/main-background-dimmed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/nav-back-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions assets/images/nav-close-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/rounded-checkbox-normal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/images/rounded-checkbox-selected.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 14 additions & 2 deletions assets/l10n/app_en.arb
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"helloWorld": "Hello World!",
"alertErrorTitle": "Error",
"alertErrorOKLabel": "OK",
"alertErrorFallbackMessage": "Unknown error"
"alertErrorFallbackMessage": "Unknown error",
"loginScreenLoginButtonText": "Login",
"loginScreenForgotButtonText": "Forgot?",
"loginScreenEmailTextFieldPlaceholderText": "Email",
"loginScreenPasswordTextFieldPlaceholderText": "Password",
"homeScreenTodayText": "Today",
"sideMenuLogoutButtonTitle": "Logout",
"surveyDetailScreenStartSurveyButtonTitle": "Start Survey",
"surveyQuestionsScreenLowestScoreNPSText": "Not at all Likely",
"surveyQuestionsScreenHighestScoreNPSText": "Extremely Likely",
"surveyQuestionsScreenCloseConfirmDialogTitle": "Warning!",
"surveyQuestionsScreenCloseConfirmDialogMessage": "Are you sure you want to quit the survey?",
"surveyQuestionsScreenCloseConfirmDialogOkLabel": "Yes",
"surveyQuestionsScreenSubmitButtonTitle": "Submit"
}
15 changes: 14 additions & 1 deletion assets/l10n/app_vi.arb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,18 @@
"helloWorld": "Xin chào Thế giới!",
"alertErrorTitle": "Lỗi",
"alertErrorOKLabel": "OK",
"alertErrorFallbackMessage": "Lỗi không xác định"
"alertErrorFallbackMessage": "Lỗi không xác định",
"loginScreenLoginButtonText": "Đăng nhập",
"loginScreenForgotButtonText": "Quên?",
"loginScreenEmailTextFieldPlaceholderText": "Email",
"loginScreenPasswordTextFieldPlaceholderText": "Mật khẩu",
"homeScreenTodayText": "Hôm nay",
"sideMenuLogoutButtonTitle": "Đăng xuất",
"surveyDetailScreenStartSurveyButtonTitle": "Bắt đầu khảm sát",
"surveyQuestionsScreenLowestScoreNPSText": "Hoàn toàn không",
"surveyQuestionsScreenHighestScoreNPSText": "Rất có thể",
"surveyQuestionsScreenCloseConfirmDialogTitle": "Cảnh báo",
"surveyQuestionsScreenCloseConfirmDialogMessage": "Bạn có chắc chắn muốn kết thúc khảo sát này?",
"surveyQuestionsScreenCloseConfirmDialogOkLabel": "Đúng",
"surveyQuestionsScreenSubmitButtonTitle": "Gửi"
}
Loading