Skip to content

Commit

Permalink
chore: set V3 themes by default for example app
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakeoon committed Feb 2, 2022
1 parent f6c1488 commit a5ee163
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/BottomNavigation/BottomNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ const BottomNavigation = ({
: 7;

// We render the active icon and label on top of inactive ones and cross-fade them on change.
// This trick gives the illusion that we are animating between active and inactive colors?.
// This trick gives the illusion that we are animating between active and inactive colors.
// This is to ensure that we can use native driver, as colors cannot be animated with native driver.
const activeOpacity = active;
const inactiveOpacity = active.interpolate({
Expand Down
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export { Colors };
export { useTheme, withTheme, ThemeProvider } from './core/theming';

export { default as Provider } from './core/Provider';
export { default as DefaultTheme } from './styles/themes/v2/LightTheme';
export { default as DarkTheme } from './styles/themes/v2/DarkTheme';
export { default as DefaultTheme } from './styles/themes/v3/LightTheme';
export { default as DarkTheme } from './styles/themes/v3/DarkTheme';
export { default as shadow } from './styles/shadow';
export { default as overlay } from './styles/overlay';
export { default as configureFonts } from './styles/fonts';
Expand Down

0 comments on commit a5ee163

Please sign in to comment.