1 Star 0 Fork 0

风影流痕/flutter-gallery

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
transitions_perf.dart 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2019 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:convert' show JsonEncoder;
import 'package:flutter/material.dart';
import 'package:flutter_driver/driver_extension.dart';
import 'package:gallery/data/demos.dart';
import 'package:gallery/main.dart' show GalleryApp;
// See transitions_perf_test.dart for how to run this test.
Future<String> _handleMessages(String message) async {
switch (message) {
case 'demoDescriptions':
final demoDescriptions = allGalleryDemoDescriptions();
return const JsonEncoder.withIndent(' ').convert(demoDescriptions);
case 'isTestingCraneOnly':
return const String.fromEnvironment('onlyCrane', defaultValue: 'false');
case 'isTestingReplyOnly':
return const String.fromEnvironment('onlyReply', defaultValue: 'false');
default:
throw 'unknown message';
}
}
void main() {
enableFlutterDriverExtension(handler: _handleMessages);
runApp(const GalleryApp(isTestMode: true));
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fujiawei/flutter-gallery.git
git@gitee.com:fujiawei/flutter-gallery.git
fujiawei
flutter-gallery
flutter-gallery
master

搜索帮助