Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Adjust unauthenticated flows to phone dark mode #448

Open
uiboy opened this issue Oct 24, 2019 · 0 comments
Open

Adjust unauthenticated flows to phone dark mode #448

uiboy opened this issue Oct 24, 2019 · 0 comments

Comments

@uiboy
Copy link
Member

uiboy commented Oct 24, 2019

ios now supports a dark mode , android already has had this for a while.

We should be able to read this and change our splash screen and registration flows to darker tones.
For material app, flutter supports a dark theme like this

MaterialApp(
  theme: ThemeData(
    brightness: Brightness.light,
    primaryColor: Colors.red,
  ),
  darkTheme: ThemeData(
    brightness: Brightness.dark,
  ),
);

Theres some ongoing work around some Cupertino widgets though
flutter/flutter#39685
flutter/flutter#33873

  1. Would require us to set dark/light theme across all the steps of the registration / forgot password / sign up / login flows.

  2. Use a dark splash image on the splash screen.

  3. Also the default theme when logging into the app should be a dark one if phone is in dark mode and there is no stored theme in the storage.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant