-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
Say you want to add extra keys to your theme. Right now Flow will complain about them. Would be nice to extend the theme type and make components be aware of it.
Example:
const theme = {
...DarkTheme,
colors: {
...DarkTheme.colors,
primary: '#F44336',
accent: '#F44336',
secondaryText: 'rgba(255, 255, 255, .7)', // Custom one
},
};