我正在尝试自定义 withAuthenticator HOC aws-amplifier 登录屏幕中的颜色。
我跟着:
https://aws-amplify.github.io/docs/js/authentication#using-components-in-react
并阅读:
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 ×1