Skip to content

Commit fcd5bbd

Browse files
open_wearable/lib/main.dart: Block all Hero Animations until they are fixed
1 parent b0e4428 commit fcd5bbd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

open_wearable/lib/main.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ class MyApp extends StatelessWidget {
6161
DefaultCupertinoLocalizations.delegate,
6262
],
6363
title: 'Open Wearable',
64-
home: HomePage(),
64+
home: HeroMode(
65+
enabled: false, //TODO: Remove this when Hero animations are fixed
66+
child: const HomePage(),
67+
),
6568
),
6669
),
6770
);

0 commit comments

Comments
 (0)