Unverified Commit 99fd65e7 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Remove print and fix code formatting (#43843)

parent b8857c87
......@@ -553,8 +553,9 @@ class _MaterialAppState extends State<MaterialApp> {
key: GlobalObjectKey(this),
navigatorKey: widget.navigatorKey,
navigatorObservers: _navigatorObservers,
pageRouteBuilder: <T>(RouteSettings settings, WidgetBuilder builder) =>
MaterialPageRoute<T>(settings: settings, builder: builder),
pageRouteBuilder: <T>(RouteSettings settings, WidgetBuilder builder) {
return MaterialPageRoute<T>(settings: settings, builder: builder);
},
home: widget.home,
routes: widget.routes,
initialRoute: widget.initialRoute,
......
......@@ -432,7 +432,6 @@ void _defineTests() {
),
));
List<SemanticsFlag> flags = SemanticsFlag.values.values.toList();
print('flags: $flags');
// [SemanticsFlag.hasImplicitScrolling] isn't part of [SemanticsProperties]
// therefore it has to be removed.
flags.remove(SemanticsFlag.hasImplicitScrolling);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment