mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Remove print and fix code formatting (#43843)
This commit is contained in:
parent
b8857c8795
commit
99fd65e79a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user