Remove namesless todo (#85151)

This commit is contained in:
chunhtai 2021-06-23 14:29:14 -07:00 committed by GitHub
parent 2130cf9c02
commit 50a2fad986
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -211,7 +211,7 @@ class _SearchDemoSearchDelegate extends SearchDelegate<int?> {
tooltip: 'Voice Search',
icon: const Icon(Icons.mic),
onPressed: () {
query = 'TODO: implement voice input';
query = 'Implement voice input';
},
)
else

View file

@ -144,7 +144,7 @@ Future<void> _runSkippedTest(Suite suiteConfig, Test test, List<Group> parents,
/// // This test is especially slow on Windows.
/// 'windows': Timeout.factor(2),
/// 'browser': [
/// Skip('TODO: add browser support'),
/// Skip('add browser support'),
/// // This will be slow on browsers once it works on them.
/// Timeout.factor(2)
/// ]

View file

@ -186,7 +186,7 @@ class BasicDeferredComponentsConfig extends DeferredComponentsConfig {
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
// Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "ninja.qian.splitaottest1"
minSdkVersion 16
targetSdkVersion 30
@ -203,7 +203,7 @@ class BasicDeferredComponentsConfig extends DeferredComponentsConfig {
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.release
}