Closed pkreipke closed 3 years ago
Thank you for this types file! Very helpful.
When I just used import { AmplifyTheme } from 'aws-amplify-react-native' and inspected the AmplifyTheme it contains two new theme properties.
import { AmplifyTheme } from 'aws-amplify-react-native'
signedOutMessage: {}; sectionFooterLinkDisabled: {};
Examples: signedOutMessage is the message at the bottom of the screen. sectionFooterLinkDisabled is the style of the "Resend Code" link in the confirm code screen when inactive.
signedOutMessage
sectionFooterLinkDisabled
I was able to successfully override and use them.
Can also see them (and a few others) here: https://github.com/aws-amplify/amplify-js/blob/main/packages/aws-amplify-react-native/src/AmplifyTheme.ts
Regards, Per
Thanks!
Thank you for this types file! Very helpful.
When I just used
import { AmplifyTheme } from 'aws-amplify-react-native'
and inspected the AmplifyTheme it contains two new theme properties.Examples:
signedOutMessage
is the message at the bottom of the screen.sectionFooterLinkDisabled
is the style of the "Resend Code" link in the confirm code screen when inactive.I was able to successfully override and use them.
Can also see them (and a few others) here: https://github.com/aws-amplify/amplify-js/blob/main/packages/aws-amplify-react-native/src/AmplifyTheme.ts
Regards, Per