Skip to content

Commit

Permalink
feat: add material app zoom transition (#98)
Browse files Browse the repository at this point in the history
Closes #94
  • Loading branch information
shreyas1599 committed Aug 23, 2020
1 parent 0df64fb commit 34e6af2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/app.dart
Expand Up @@ -22,6 +22,11 @@ class MyApp extends StatelessWidget {
theme.brightness == Brightness.dark ? null : Colors.white,
accentColor: theme.palette.primary,
scaffoldBackgroundColor: theme.palette.background,
pageTransitionsTheme: PageTransitionsTheme(
builders: {
TargetPlatform.android: ZoomPageTransitionsBuilder(),
},
),
),
home: Home(),
);
Expand Down

0 comments on commit 34e6af2

Please sign in to comment.