Open
Description
Which Specific Feature is your question related to?
Amplify UI
Question
How do I set the company logo in the AWS Amplify Authenticator UI for my Flutter app? The instructions here are too invasive or unclear: https://ui.docs.amplify.aws/flutter/connected-components/authenticator/customization
Isn't there a way to pass the logo as a parameter to the Authenticator UI? Here's a quick snippet of my working UI:
@override
Widget build(BuildContext context) {
return Authenticator(
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 32),
// want to pass company logo in here, or let the Cloud handle it
child: MaterialApp(
debugShowCheckedModeBanner: false,
builder: Authenticator.builder(),
home: LandingPage(),
theme: lightMode,
darkTheme: darkMode,
),
);
}