小编Gui*_*ler的帖子

自定义 withAuthenticator HOC 组件的颜色

我正在尝试自定义 withAuthenticator HOC aws-amplifier 登录屏幕中的颜色。

我跟着:

https://aws-amplify.github.io/docs/js/authentication#using-components-in-react

并阅读:

https://medium.com/@coryschimmoeller/customizing-the-authentication-experience-of-amplifys-withauthenticator-e6f2089ff469

import { AmplifyTheme } from 'aws-amplify-react';


const myTheme = {
    ...AmplifyTheme,
    BackgroundColor: { color: 'blue',backgroundColor: 'blue' },
    button: { color: 'blue',backgroundColor: 'blue' },
    amazonSignInButton: { color: 'blue',backgroundColor: 'blue' },
    signInButton: { backgroundColor: 'blue' , color: 'blue'}
};

...

//export default App;
export default withAuthenticator(App, myTheme );
Run Code Online (Sandbox Code Playgroud)

amplify 仍然呈现 AWS 默认的外观和感觉。我在 myTheme 中放入的内容没有任何区别,看起来好像完全被忽略了。感谢您提前提供任何反馈。

aws-amplify

2
推荐指数
2
解决办法
2350
查看次数

标签 统计

aws-amplify ×1