mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Fixes https://github.com/flutter/flutter/issues/143482 This brings in the gallery more or less as is: * Removed localizations * Ensure tests still run (locally verified, will switch CI later). * Removed deferred components * Fixup pubspec
33 lines
1.1 KiB
Dart
33 lines
1.1 KiB
Dart
// Copyright 2014 The Flutter Authors. 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 List<String> demoDescriptions = Demos.allDescriptions();
|
|
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));
|
|
}
|