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

feat: Terms of use web view #114

Merged
merged 4 commits into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion lib/core/presentation/theming/colors/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class _AppColors {
static Color onErrorW = const Color(0xffFF000D);
// static Color bgColorW = const Color(0xffF7F7F7);
static Color bgColorW = Color(0xffFFFFFF);
static Color onBgColorW = Color(0xffD9D9D9);
static Color onBgColorW = Color(0xffF5F5F5);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you tested every other screen that uses this color to make sure it doesn't break?

@DesmondTambe is responsible for setting the right color.

Please revert this change.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fonkamloic right colors set already

// static Color surfaceW = const Color(0xffF5F5F5); // ;
// static Color surfacerW = Color(0xffFFFFFF);
static Color onSurfaceW = Color(0xffD9D9D9); // const Color(0xff808191);
Expand Down
17 changes: 17 additions & 0 deletions lib/l10n/arb/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -231,5 +231,22 @@
"signUpAlreadyAMemberText": "Already a member?",
"@signUpAlreadyAMemberText": {
"description": "This is the text displayed on the sign up screen after the social media icon buttons"
},
"termsOfUseTitle": "Terms and Conditions",
"@termsOfUseTitle": {
"description": "This is the title displayed on the terms of use screen"
},
"termsOfUseText": "Last updated January 2022",
"@termsOfUseText": {
"description": "This is the text displayed on the terms of use screen displaying when it was last updated"
},
"termsOfUseCancelBtn": "Cancel",
"@termsOfUseCancelBtn": {
"description": "This is the text displayed on the cancel button of the terms of use screen"
},
"termsOfUseSubmitBtn": "Submit",
"@termsOfUseSubmitBtn": {
"description": "This is the text displayed on the submit button of the terms of use screen"
}
}

17 changes: 17 additions & 0 deletions lib/l10n/arb/app_fr.arb
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,22 @@
"signUpAlreadyAMemberText": "Déjà membre?",
"@signUpAlreadyAMemberText": {
"description": "Il s'agit du texte affiché sur l'écran d'inscription après les boutons d'icône de médias sociaux."
},
"termsOfUseTitle": "Termes et Conditions",
"@termsOfUseTitle": {
"description": "C'est le titre affiché sur l'écran des conditions d'utilisation"
},
"termsOfUseText": "Dernière mise à jour Janvier 2022",
"@termsOfUseText": {
"description": "Voici le texte affiché sur l'écran des conditions d'utilisation indiquant la date de la dernière mise à jour."
},
"termsOfUseCancelBtn": "Annuler",
"@termsOfUseCancelBtn": {
"description": "Il s'agit du texte affiché sur le bouton d'annulation de l'écran des conditions d'utilisation."
},
"termsOfUseSubmitBtn": "Envoyer",
"@termsOfUseSubmitBtn": {
"description": "Il s'agit du texte affiché sur le bouton d'envoi de l'écran des conditions d'utilisation."
}
}

Loading