mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
28 lines
749 B
Dart
28 lines
749 B
Dart
// Copyright 2014 The Chromium 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:ui' as ui;
|
|
import 'package:flutter/material.dart';
|
|
|
|
// named_isolates_test depends on these values.
|
|
const String _kFirstIsolateName = 'first isolate name';
|
|
const String _kSecondIsolateName = 'second isolate name';
|
|
|
|
void first() {
|
|
_run(_kFirstIsolateName);
|
|
}
|
|
|
|
void second() {
|
|
_run(_kSecondIsolateName);
|
|
}
|
|
|
|
void _run(String name) {
|
|
ui.window.setIsolateDebugName(name);
|
|
runApp(Center(child: Text(name, textDirection: TextDirection.ltr)));
|
|
}
|
|
|
|
// `first` and `second` are the actual entrypoints to this app, but dart specs
|
|
// require a main function.
|
|
void main() { }
|