Cool Auth UI

A fully customizable and reusable authentication UI package for Flutter apps. Includes:

  • Login
  • Registration
  • Forgot Password
  • Theme customization (colors, fonts, logos)

Features

  • Easily integratable
  • Backend agnostic (connect your own auth logic)
  • Designed for mobile apps
  • Plug-and-play authentication UI

Getting Started

CoolAuthUI(
  logo: Image.asset('assets/logo.png'),
  backgroundColor: Colors.black,
  fontFamily: 'Arial',
  fontSize: 14,
  fontColor: Colors.white,
  buttonColor: Colors.blueAccent,
  onLogin: (email, password) => yourLoginFunc(email, password),
  onRegister: (email, password, name) => yourRegisterFunc(email, password, name),
  onForgotPassword: (email) => yourForgotFunc(email),
)

License

MIT

Libraries

cool_auth_ui
main