This repository has been archived by the owner on Sep 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run dartfmt fix over example apps to remove optional new/const.
Skip any files that run on the VM (builder), until dart2 default is flipped. Closes #1408 PiperOrigin-RevId: 200660215
- Loading branch information
1 parent
47dee4f
commit 072a5d6
Showing
16 changed files
with
58 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import 'package:angular_router/angular_router.dart'; | ||
|
||
final newsRoutePath = new RoutePath( | ||
final newsRoutePath = RoutePath( | ||
path: '/', | ||
additionalData: const {'feed': 'news'}, | ||
useAsDefault: true, | ||
); | ||
|
||
final newRoutePath = new RoutePath( | ||
final newRoutePath = RoutePath( | ||
path: '/newest', | ||
additionalData: const {'feed': 'newest'}, | ||
); | ||
|
||
final showRoutePath = new RoutePath( | ||
final showRoutePath = RoutePath( | ||
path: '/show', | ||
additionalData: const {'feed': 'show'}, | ||
); | ||
|
||
final askRoutePath = new RoutePath( | ||
final askRoutePath = RoutePath( | ||
path: '/ask', | ||
additionalData: const {'feed': 'ask'}, | ||
); | ||
|
||
final jobsRoutePath = new RoutePath( | ||
final jobsRoutePath = RoutePath( | ||
path: '/jobs', | ||
additionalData: const {'feed': 'jobs'}, | ||
); | ||
|
||
final itemRoutePath = new RoutePath(path: '/item/:id'); | ||
final itemRoutePath = RoutePath(path: '/item/:id'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters