Fix: incorrect props passed to RN's style prop (#18435)

Fix 3 errors in the onboarding screen about unsupported props passed to the style prop.

1x ERROR  Warning: Failed prop type: Invalid props.style key resizeMethod supplied to Image.
2x ERROR  Warning: Failed prop type: Invalid props.style key size supplied to Text.

Related guideline:
563f1c588d/doc/new-guidelines.md (dont-define-properties-in-styles-ns)
This commit is contained in:
Icaro Motta 2024-01-11 20:10:04 -03:00 committed by GitHub
parent ec2b95c370
commit 7e2c7abf30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 19 deletions

View File

@ -27,11 +27,11 @@
(defn background-image
[content-width]
[rn/image
{:style {:resize-mode :stretch
:resize-method :scale
:margin-top 32
:width content-width}
:source (resources/get-image :onboarding-illustration)}])
{:resize-mode :stretch
:resize-method :scale
:style {:margin-top 32
:width content-width}
:source (resources/get-image :onboarding-illustration)}])
(defonce progress (atom nil))
(defonce paused? (atom nil))

View File

@ -12,12 +12,8 @@
:flex-wrap :wrap})
(def plain-text
{:size :paragraph-2
:weight :regular
:color colors/white-opa-70})
{:color colors/white-opa-70})
(def highlighted-text
{:flex 1
:size :paragraph-2
:weight :regular
:color colors/white})
{:flex 1
:color colors/white})

View File

@ -34,17 +34,20 @@
:heading (i18n/label :t/new-to-status)
:accessibility-label :new-to-status-button}}
[quo/text
{:style style/plain-text}
{:size :paragraph-2
:weight :regular
:style style/plain-text}
(i18n/label :t/you-already-use-status)]
[quo/text
{:style style/text-container}
[quo/text {:style style/text-container}
[quo/text
{:style style/plain-text}
{:size :paragraph-2
:weight :regular
:style style/plain-text}
(i18n/label :t/by-continuing-you-accept)]
[quo/text
{:on-press #(debounce/dispatch-and-chill
[:open-modal :privacy-policy]
1000)
{:on-press #(debounce/dispatch-and-chill [:open-modal :privacy-policy] 1000)
:size :paragraph-2
:weight :regular
:style style/highlighted-text}
(i18n/label :t/terms-of-service)]]]
[overlay/view]])